ImVProtectDevice.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImVProtectDevice
  6. {
  7. public string DeviceId { get; set; } = null!;
  8. public int DeviceAddr { get; set; }
  9. public string DeviceName { get; set; } = null!;
  10. public string StatCode { get; set; } = null!;
  11. public string GateWayId { get; set; } = null!;
  12. public string? BayName { get; set; }
  13. public int? DeviceState { get; set; }
  14. public int PuctgyCode { get; set; }
  15. public int CanSwDzzone { get; set; }
  16. public int Support12yc { get; set; }
  17. public int SupportVersion { get; set; }
  18. public int SupportDkjl { get; set; }
  19. public int? StartOfDkjl { get; set; }
  20. public int? EndOfDkjl { get; set; }
  21. public string? DeviceType { get; set; }
  22. public string StatName { get; set; } = null!;
  23. public string GateWayName { get; set; } = null!;
  24. public string? GatewayIp1 { get; set; }
  25. public int? GatewayPort1 { get; set; }
  26. public string? GatewayIp2 { get; set; }
  27. public int? GatewayPort2 { get; set; }
  28. public int PhyAddr { get; set; }
  29. public string Manufacturer { get; set; } = null!;
  30. public string DevCtgy { get; set; } = null!;
  31. public string Generation { get; set; } = null!;
  32. public int DzzoneCount { get; set; }
  33. public string? Model { get; set; }
  34. public string AnalogParseMode { get; set; } = null!;
  35. public string EventParseMode { get; set; } = null!;
  36. public int SupportGuZhangBg { get; set; }
  37. public int SupportShiJianBg { get; set; }
  38. public int SupportZiJianBg { get; set; }
  39. public int SupportLuBoWj { get; set; }
  40. public int SupportDz { get; set; }
  41. public int DzreadOnly { get; set; }
  42. public int SupportFhluBo { get; set; }
  43. }
  44. }