ImVDeviceYm.cs 931 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImVDeviceYm
  6. {
  7. public string Id { get; set; } = null!;
  8. public string Ymname { get; set; } = null!;
  9. public string? Unit { get; set; }
  10. public double? Cof { get; set; }
  11. public double? MaxValue { get; set; }
  12. public int DeviceAddr { get; set; }
  13. public string DeviceName { get; set; } = null!;
  14. public string StatCode { get; set; } = null!;
  15. public string GateWayId { get; set; } = null!;
  16. public string DeviceId { get; set; } = null!;
  17. public string DataType { get; set; } = null!;
  18. public string DataName { get; set; } = null!;
  19. public int CpuIndex { get; set; }
  20. public int InfoAddr { get; set; }
  21. public int AutoSave { get; set; }
  22. public int Visible { get; set; }
  23. }
  24. }