TShiftcheckinfo.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDataCourier.SpsData
  4. {
  5. public partial class TShiftcheckinfo
  6. {
  7. public ulong Gid { get; set; }
  8. public uint? Sno { get; set; }
  9. public byte? PumpType { get; set; }
  10. public sbyte? Posid { get; set; }
  11. public uint? ShiftNo { get; set; }
  12. public string FuelName { get; set; }
  13. public byte? NozzleNo { get; set; }
  14. public long? VolBeg { get; set; }
  15. public long? VolEnd { get; set; }
  16. public long? MoneyBegin { get; set; }
  17. public long? MoneyEnd { get; set; }
  18. public uint? Mtotal { get; set; }
  19. public int? VolTotal { get; set; }
  20. public uint? BackTank { get; set; }
  21. public uint? OwnUse { get; set; }
  22. public uint? Other { get; set; }
  23. public int? RealSell { get; set; }
  24. public uint? TotalTrd { get; set; }
  25. public uint? Price { get; set; }
  26. public uint? Cash { get; set; }
  27. public uint? CashM { get; set; }
  28. public uint? Ic { get; set; }
  29. public uint? Icm { get; set; }
  30. public uint? BankCard { get; set; }
  31. public uint? BankCardM { get; set; }
  32. public uint? Retail { get; set; }
  33. public int? TotalMoney { get; set; }
  34. public int? DisctMoney { get; set; }
  35. public int? FuelCash { get; set; }
  36. public int? RealCash { get; set; }
  37. public int? Margin { get; set; }
  38. public byte? UploadFlag { get; set; }
  39. }
  40. }