OfflineGrayInfo.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. namespace Dfs.WayneChina.SpsDataCourier.HostModels
  3. {
  4. public class OfflineGrayInfo
  5. {
  6. public byte operationType { get; set; }
  7. public ushort discountNo { get; set; }
  8. public long gid { get; set; }
  9. public uint tmac { get; set; }
  10. public ushort sno { get; set; }
  11. public byte uploadFlag { get; set; }
  12. public string cardNo { get; set; }
  13. public ushort ctc { get; set; }
  14. public byte pumpType { get; set; }
  15. public byte paymodeID { get; set; }
  16. public byte pumpNo { get; set; }
  17. public uint tac { get; set; }
  18. public long endPump { get; set; }
  19. public long cardBal { get; set; }
  20. public uint vol { get; set; }
  21. public DateTime ttctime { get; set; }
  22. public uint ttc { get; set; }
  23. public uint realMON { get; set; }
  24. public DateTime ttctimeEnd { get; set; }
  25. public ushort prc { get; set; }
  26. public byte trdType { get; set; }
  27. public string commID { get; set; }
  28. public uint mon { get; set; }
  29. public uint payTemID { get; set; }
  30. public string psamtid { get; set; }
  31. public string psamttc { get; set; }
  32. public byte nozNo { get; set; }
  33. public string psamasn { get; set; }
  34. public uint gmac { get; set; }
  35. public ushort seqNo { get; set; }
  36. public uint psamtac { get; set; }
  37. }
  38. }