ImDeviceYx.cs 714 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImDeviceYx
  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 virtual ImAlertLevel AlertLevelNavigation { get; set; } = null!;
  16. public virtual ImDeviceDatum IdNavigation { get; set; } = null!;
  17. }
  18. }