ImDeviceYkTmp.cs 938 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImDeviceYkTmp
  6. {
  7. public string Id { get; set; } = null!;
  8. public string Ykname { get; set; } = null!;
  9. public string? RelatedYxId { get; set; }
  10. public string YkType { get; set; } = null!;
  11. public string? SwOnStr { get; set; }
  12. public string? SwOffStr { get; set; }
  13. public string? SwUncertStr { get; set; }
  14. public string? PreYxId { get; set; }
  15. public int? PreState4Yk { get; set; }
  16. public string LockMode { get; set; } = null!;
  17. public string IsResetCmd { get; set; } = null!;
  18. public string? PreYxIdOff { get; set; }
  19. public int? PreState4YkOff { get; set; }
  20. public string LockModeOff { get; set; } = null!;
  21. public virtual ImDeviceDataTmp IdNavigation { get; set; } = null!;
  22. }
  23. }