| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- namespace Dfs.WayneChina.SpsDataCourier.HostModels
- {
- public class OfflineCardInfo
- {
- public byte bLimitCar { get; set; }
- public string carno { get; set; }
- public byte cStatus { get; set; }
- public DateTime kcDate { get; set; }
- public DateTime overDate { get; set; }
- public bool bLmtGood { get; set; }
- public DateTime startdate { get; set; }
- public uint money { get; set; }
- public ushort discountNo { get; set; }
- public string holder { get; set; }
- public byte cardClass { get; set; }
- public long gid { get; set; }
- public byte enableSms { get; set; }
- public uint tmac { get; set; }
- public ushort sno { get; set; }
- public string acctID { get; set; }
- public byte uploadFlag { get; set; }
- public long rechgTotal { get; set; }
- public string cardNo { get; set; }
- public byte cardType { get; set; }
- public uint pre_malloc { get; set; }
- public string userNo { get; set; }
- public string phoneNo { get; set; }
- public uint mmaxPay { get; set; }
- public uint dmaxPay { get; set; }
- public string userPIN { get; set; }
- public string ctctime { get; set; }
- public byte ctcflag { get; set; }
- public ushort ctc { get; set; }
- public byte cardSNo { get; set; }
- public uint cardID { get; set; }
- public long integralTotal { get; set; }
- public string operNo { get; set; }
- public string lmtOil { get; set; }
- public uint onceMaxPay { get; set; }
- public byte limitTimes { get; set; }
- }
- }
|