ImDeviceYk.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImDeviceYk
  6. {
  7. public ImDeviceYk()
  8. {
  9. ImProgControlItems = new HashSet<ImProgControlItem>();
  10. }
  11. public string Id { get; set; } = null!;
  12. public string Ykname { get; set; } = null!;
  13. public string? RelatedYxId { get; set; }
  14. public string YkType { get; set; } = null!;
  15. public string? SwOnStr { get; set; }
  16. public string? SwOffStr { get; set; }
  17. public string? SwUncertStr { get; set; }
  18. public string? PreYxId { get; set; }
  19. public int? PreState4Yk { get; set; }
  20. public string LockMode { get; set; } = null!;
  21. public string IsResetCmd { get; set; } = null!;
  22. public string? PreYxIdOff { get; set; }
  23. public int? PreState4YkOff { get; set; }
  24. public string LockModeOff { get; set; } = null!;
  25. public virtual ImDeviceDatum IdNavigation { get; set; } = null!;
  26. public virtual ImNoticeBoard? ImNoticeBoard { get; set; }
  27. public virtual ICollection<ImProgControlItem> ImProgControlItems { get; set; }
  28. }
  29. }