TCargasbottleinfo.cs 889 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TCargasbottleinfo
  6. {
  7. public long Gid { get; set; }
  8. public string CarNo { get; set; }
  9. public int? FleetNo { get; set; }
  10. public string LineNo { get; set; }
  11. public int? LogicNo { get; set; }
  12. public byte? CarType { get; set; }
  13. public string BelongTo { get; set; }
  14. public string Gbno { get; set; }
  15. public string Gbtype { get; set; }
  16. public int? Gbvol { get; set; }
  17. public DateTime? Gbmtime { get; set; }
  18. public DateTime? Gbitime { get; set; }
  19. public DateTime? Gbetime { get; set; }
  20. public int? Gbpressure { get; set; }
  21. public string CarLabel { get; set; }
  22. public string CardNo { get; set; }
  23. public byte? Flag { get; set; }
  24. }
  25. }