ImVDeviceYx.cs 1.1 KB

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImVDeviceYx
  6. {
  7. public string Id { get; set; } = null!;
  8. public string Yxname { get; set; } = null!;
  9. public string? YxType { get; set; }
  10. public string? SwOnStr { get; set; }
  11. public string? SwOffStr { get; set; }
  12. public string? SwUncertStr { get; set; }
  13. public string AlertLevel { get; set; } = null!;
  14. public string NormalState { get; set; } = null!;
  15. public int DeviceAddr { get; set; }
  16. public string DeviceName { get; set; } = null!;
  17. public string StatCode { get; set; } = null!;
  18. public string GateWayId { get; set; } = null!;
  19. public string DeviceId { get; set; } = null!;
  20. public string DataType { get; set; } = null!;
  21. public string DataName { get; set; } = null!;
  22. public int CpuIndex { get; set; }
  23. public int InfoAddr { get; set; }
  24. public int AutoSave { get; set; }
  25. public int Visible { get; set; }
  26. }
  27. }