TNozzleinfo.cs 496 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TNozzleinfo
  6. {
  7. public byte LogicId { get; set; }
  8. public byte? PhysId { get; set; }
  9. public string DspNo { get; set; }
  10. public int? TankId { get; set; }
  11. public int? PumpNode { get; set; }
  12. public string State { get; set; }
  13. public string OilTypeId { get; set; }
  14. public string CarIdenAddr { get; set; }
  15. }
  16. }