123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- namespace Dfs.WayneChina.SpsDataCourier.HostModels
- {
- public class OfflineGrayInfo
- {
- public byte operationType { get; set; }
- public ushort discountNo { get; set; }
- public long gid { get; set; }
- public uint tmac { get; set; }
- public ushort sno { get; set; }
- public byte uploadFlag { get; set; }
- public string cardNo { get; set; }
- public ushort ctc { get; set; }
- public byte pumpType { get; set; }
- public byte paymodeID { get; set; }
- public byte pumpNo { get; set; }
- public uint tac { get; set; }
- public long endPump { get; set; }
- public long cardBal { get; set; }
- public uint vol { get; set; }
- public DateTime ttctime { get; set; }
- public uint ttc { get; set; }
- public uint realMON { get; set; }
- public DateTime ttctimeEnd { get; set; }
- public ushort prc { get; set; }
- public byte trdType { get; set; }
- public string commID { get; set; }
- public uint mon { get; set; }
- public uint payTemID { get; set; }
- public string psamtid { get; set; }
- public string psamttc { get; set; }
- public byte nozNo { get; set; }
- public string psamasn { get; set; }
- public uint gmac { get; set; }
- public ushort seqNo { get; set; }
- public uint psamtac { get; set; }
- }
- }
|