ImVProtectDeviceTmp.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImVProtectDeviceTmp
  6. {
  7. public string Id { get; set; } = null!;
  8. public string DeviceName { get; set; } = null!;
  9. public int PuctgyCode { get; set; }
  10. public string PuctgyName { get; set; } = null!;
  11. public string Manufacturer { get; set; } = null!;
  12. public string DevCtgy { get; set; } = null!;
  13. public string Generation { get; set; } = null!;
  14. public int DzzoneCount { get; set; }
  15. public string? Model { get; set; }
  16. public int CanSwDzzone { get; set; }
  17. public int Support12yc { get; set; }
  18. public int SupportVersion { get; set; }
  19. public int SupportDkjl { get; set; }
  20. public int? StartOfDkjl { get; set; }
  21. public int? EndOfDkjl { get; set; }
  22. public string AnalogParseMode { get; set; } = null!;
  23. public string EventParseMode { get; set; } = null!;
  24. public int SupportGuZhangBg { get; set; }
  25. public int SupportShiJianBg { get; set; }
  26. public int SupportZiJianBg { get; set; }
  27. public int SupportLuBoWj { get; set; }
  28. public int SupportDz { get; set; }
  29. public int DzreadOnly { get; set; }
  30. public int SupportFhluBo { get; set; }
  31. }
  32. }