12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- namespace Dfs.WayneChina.SpsDbManager.Models
- {
- public partial class TTanklist
- {
- public byte TankId { get; set; }
- public string FuelNo { get; set; }
- public int? Height { get; set; }
- public int? MaxHeight { get; set; }
- public int? MinHeight { get; set; }
- public int? MaxVolume { get; set; }
- public int? MinVolume { get; set; }
- public int? MaxWaterHeight { get; set; }
- public int? MaxTemp { get; set; }
- public string ProbeId { get; set; }
- public int? OffSet { get; set; }
- public int? OilOffSet { get; set; }
- public int? WaterOffSet { get; set; }
- public string ProbeAddr { get; set; }
- public DateTime? FixDate { get; set; }
- public string FactoryNo { get; set; }
- public DateTime? FactoryDate { get; set; }
- public int? LimitDate { get; set; }
- public string FactName { get; set; }
- }
- }
|