| 123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.SpsDbManager.ResultSet
- {
- public class GrayInfoResult
- {
- 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 Prc { get; set; }
- public uint Vol { get; set; }
- public uint Mon { get; set; }
- public uint RealMon { get; set; }
- public uint CardBal { get; set; }
- public uint Ctc { get; set; }
- public string Ttctime { get; set; }
- public uint Ttc { get; set; }
- public uint SeqNo { get; set; }
- public byte NozNo { get; set; }
- public byte PumpNo { get; set; }
- public ulong PayTemId { get; set; }
- public ulong EndPumpId { get; set; }
- public uint 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; }
- }
- }
|