12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.SpsDataCourier.Guard
- {
- public class GrayTrade
- {
- public ulong Id { get; set; }
- public ulong Gid { get; set; }
- public ushort SNo { get; set; }
- public byte PumpType { get; set; }
- public string CardNo { get; set; }
- public byte PayModeId { get; set; }
- public byte TrdType { get; set; }
- public string CommId { get; set; }
- public uint Price { get; set; }
- public uint Volume { get; set; }
- public uint Amount { get; set; }
- public uint PayAmount { get; set; }
- public uint CardBalance { get; set; }
- public ushort CTC { get; set; }
- public DateTime TtcTime { get; set; }
- public DateTime TtcTimeEnd { get; set; }
- public uint TTC { get; set; }
- public ushort SeqNo { get; set; }
- public byte NozzleNo { get; set; }
- public byte PumpNo { get; set; }
- public ulong PayTermId { get; set; }
- public ulong VolumeTotalizer { get; set; }
- public ushort DiscountNo { get; set; }
- public string PsamAsn { get; set; }
- public uint PsamTac { get; set; }
- public string PsamTid { get; set; }
- public uint PsamTtc { get; set; }
- public uint Tac { get; set; }
- public uint GMac { get; set; }
- public uint TMac { get; set; }
- public byte UploadFlag { get; set; }
- public byte OperationType { get; set; }
- #region Custom Fields
- public long VersionNo { get; set; }
- public DateTime LastUpdate { get; set; } = DateTime.Now;
- public byte CommitFlag { get; set; }
- public byte SyncFlag { get; set; }
- #endregion
- }
- }
|