TTanktruckcheck.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDataCourier.SpsData
  4. {
  5. public partial class TTanktruckcheck
  6. {
  7. public ulong Gid { get; set; }
  8. public string InceptBill { get; set; }
  9. public uint? TankId { get; set; }
  10. public string StoreName { get; set; }
  11. public DateTime? InceptTime { get; set; }
  12. public string LadingBill { get; set; }
  13. public string BearUnit { get; set; }
  14. public string CardNo { get; set; }
  15. public string Driver { get; set; }
  16. public string Discharger { get; set; }
  17. public string Incepter { get; set; }
  18. public int? StoreVol { get; set; }
  19. public int? StoreHight { get; set; }
  20. public int? StoreNullH { get; set; }
  21. public int? StorePipeVol { get; set; }
  22. public int? InceptVol { get; set; }
  23. public int? InceptHight { get; set; }
  24. public int? InceptNullH { get; set; }
  25. public int? InceptPipeVol { get; set; }
  26. public int? LossVol { get; set; }
  27. public string LossReason { get; set; }
  28. public sbyte? InceptState { get; set; }
  29. public string RefuseReson { get; set; }
  30. }
  31. }