ImDeviceDataTmp.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImDeviceDataTmp
  6. {
  7. public ImDeviceDataTmp()
  8. {
  9. ImDeviceActRuleTmps = new HashSet<ImDeviceActRuleTmp>();
  10. }
  11. public string Id { get; set; } = null!;
  12. public string DeviceId { get; set; } = null!;
  13. public string DataType { get; set; } = null!;
  14. public string DataName { get; set; } = null!;
  15. public int CpuIndex { get; set; }
  16. public int InfoAddr { get; set; }
  17. public int AutoSave { get; set; }
  18. public int Visible { get; set; }
  19. public int? ToScada { get; set; }
  20. public int? SecAddr101 { get; set; }
  21. public int? CfgFileBz { get; set; }
  22. public string? BeiZhu { get; set; }
  23. public string Domain { get; set; } = null!;
  24. public virtual ImProtectDeviceTmp Device { get; set; } = null!;
  25. public virtual ImDeviceVaTmp? ImDeviceVaTmp { get; set; }
  26. public virtual ImDeviceYcTmp? ImDeviceYcTmp { get; set; }
  27. public virtual ImDeviceYkTmp? ImDeviceYkTmp { get; set; }
  28. public virtual ImDeviceYmTmp? ImDeviceYmTmp { get; set; }
  29. public virtual ImDeviceYxTmp? ImDeviceYxTmp { get; set; }
  30. public virtual ICollection<ImDeviceActRuleTmp> ImDeviceActRuleTmps { get; set; }
  31. }
  32. }