123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.SpsDbManager.ResultSet
- {
- public class CardAccountInfoResult
- {
- public ulong Gid { get; set; }
- public UInt32 AcctSNo { get; set; }
- public string AcctId { get; set; }
- public string BelongTo { get; set; }
- public string Address { get; set; }
- public string AcctPhoneNo { get; set; }
- public byte AcctType { get; set; }
- public UInt64 Amount { get; set; }
- public int AmtType { get; set; }
- public string FuelNo { get; set; }
- public UInt32 Gift { get; set; }
- public int AcctState { get; set; }
- public string AcctDate { get; set; }
- public string CertfType { get; set; }
- public string CertfNo { get; set; }
- public Int64 AcctRechgTotal { get; set; }
- public UInt32 AcctTmac { get; set; }
- public UInt32 WaitMalloc { get; set; }
- public byte AcctEnableSms { get; set; }
- public UInt32 CardSNo { get; set; }
- public UInt64 CardId { get; set; }
- public string CardNo { get; set; }
- public ulong AcctGid { get; set; }
- public string UserNo { get; set; }
- public string Holder { get; set; }
- public string CardPhoneNo { get; set; }
- public UInt32 DMaxPay { get; set; }
- public UInt32 MMaxPay { get; set; }
- public UInt32 OnceMaxPay { get; set; }
- public byte BLimitCar { get; set; }
- public string CarNo { get; set; }
- public byte CStatus { get; set; }
- public string UserPIN { get; set; }
- public string OverDate { get; set; }
- public string KCDate { get; set; }
- public string OperNo { get; set; }
- public byte BLmtGood { get; set; }
- public string LmtOil { get; set; }
- public byte CardType { get; set; }
- public UInt32 DiscountNo { get; set; }
- public string StartDate { get; set; }
- public UInt32 Pre_Malloc { get; set; }
- public UInt32 Money { get; set; }
- public Int64 CardRechgTotal { get; set; }
- public UInt32 IntegralTotal { get; set; }
- public UInt32 CardTmac { get; set; }
- public byte CardClass { get; set; }
- public byte CardEnableSms { get; set; }
- }
- }
|