VwPresetPoint.cs 633 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class VwPresetPoint
  6. {
  7. public string PointId { get; set; } = null!;
  8. public string DevId { get; set; } = null!;
  9. public string ChanId { get; set; } = null!;
  10. public int Number { get; set; }
  11. public string? Comment { get; set; }
  12. public string ChanName { get; set; } = null!;
  13. public int ChanNo { get; set; }
  14. public string DevName { get; set; } = null!;
  15. public string? Ip { get; set; }
  16. public int? Port { get; set; }
  17. }
  18. }