GrayTrade.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.SpsDataCourier.Guard
  5. {
  6. public class GrayTrade
  7. {
  8. public ulong Id { get; set; }
  9. public ulong Gid { get; set; }
  10. public ushort SNo { get; set; }
  11. public byte PumpType { get; set; }
  12. public string CardNo { get; set; }
  13. public byte PayModeId { get; set; }
  14. public byte TrdType { get; set; }
  15. public string CommId { get; set; }
  16. public uint Price { get; set; }
  17. public uint Volume { get; set; }
  18. public uint Amount { get; set; }
  19. public uint PayAmount { get; set; }
  20. public uint CardBalance { get; set; }
  21. public ushort CTC { get; set; }
  22. public DateTime TtcTime { get; set; }
  23. public DateTime TtcTimeEnd { get; set; }
  24. public uint TTC { get; set; }
  25. public ushort SeqNo { get; set; }
  26. public byte NozzleNo { get; set; }
  27. public byte PumpNo { get; set; }
  28. public ulong PayTermId { get; set; }
  29. public ulong VolumeTotalizer { get; set; }
  30. public ushort DiscountNo { get; set; }
  31. public string PsamAsn { get; set; }
  32. public uint PsamTac { get; set; }
  33. public string PsamTid { get; set; }
  34. public uint PsamTtc { get; set; }
  35. public uint Tac { get; set; }
  36. public uint GMac { get; set; }
  37. public uint TMac { get; set; }
  38. public byte UploadFlag { get; set; }
  39. public byte OperationType { get; set; }
  40. #region Custom Fields
  41. public long VersionNo { get; set; }
  42. public DateTime LastUpdate { get; set; } = DateTime.Now;
  43. public byte CommitFlag { get; set; }
  44. public byte SyncFlag { get; set; }
  45. #endregion
  46. }
  47. }