TTanklist.cs 994 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TTanklist
  6. {
  7. public byte TankId { get; set; }
  8. public string FuelNo { get; set; }
  9. public int? Height { get; set; }
  10. public int? MaxHeight { get; set; }
  11. public int? MinHeight { get; set; }
  12. public int? MaxVolume { get; set; }
  13. public int? MinVolume { get; set; }
  14. public int? MaxWaterHeight { get; set; }
  15. public int? MaxTemp { get; set; }
  16. public string ProbeId { get; set; }
  17. public int? OffSet { get; set; }
  18. public int? OilOffSet { get; set; }
  19. public int? WaterOffSet { get; set; }
  20. public string ProbeAddr { get; set; }
  21. public DateTime? FixDate { get; set; }
  22. public string FactoryNo { get; set; }
  23. public DateTime? FactoryDate { get; set; }
  24. public int? LimitDate { get; set; }
  25. public string FactName { get; set; }
  26. }
  27. }