using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace Dfs.WayneChina.SpsDataCourier.Models { public class CardInfo { [JsonProperty("acctID")] public string AcctId { get; set; } [JsonProperty("bLimitCar")] public byte BLimitCar { get; set; } [JsonProperty("bLmtGood")] public bool BLmtGood { get; set; } //Card status [JsonProperty("cStatus")] public byte CStatus { get; set; } [JsonProperty("cardClass")] public byte CardClass { get; set; } [JsonProperty("cardID")] public long CardId { get; set; } [JsonProperty("cardNo")] public string CardNo { get; set; } [JsonProperty("cardSNo")] public short CardSNo { get; set; } [JsonProperty("cardType")] public byte CardType { get; set; } [JsonProperty("carno")] public string CarNo { get; set; } [JsonProperty("ctc")] public int CTC { get; set; } [JsonProperty("ctcflag")] public byte CtcFlag { get; set; } [JsonProperty("ctctime")] public string CtcTime { get; set; } [JsonProperty("discountNo")] public int DiscountNo { get; set; } [JsonProperty("dmaxPay")] public int DMaxPay { get; set; } [JsonProperty("enableSms")] public byte EnableSms { get; set; } [JsonProperty("gid")] public long Gid { get; set; } [JsonProperty("holder")] public string Holder { get; set; } [JsonProperty("integralTotal")] public int IntegralTotal { get; set; } //Card opened date. [JsonProperty("kcDate")] public string KcDate { get; set; } [JsonProperty("limitTimes")] public int LimitTimes { get; set; } [JsonProperty("lmtOil")] public string LmtOil { get; set; } [JsonProperty("mmaxPay")] public int MMaxPay { get; set; } [JsonProperty("money")] public int Money { get; set; } [JsonProperty("onceMaxPay")] public int OnceMaxPay { get; set; } [JsonProperty("operNo")] public string OperNo { get; set; } //Card expiry date. [JsonProperty("overDate")] public string OverDate { get; set; } [JsonProperty("phoneNo")] public string PhoneNo { get; set; } [JsonProperty("pre_malloc")] public int Pre_Malloc { get; set; } [JsonProperty("rechgTotal")] public ulong RechgTotal { get; set; } [JsonProperty("sno")] public short SNo { get; set; } //Card activation date. [JsonProperty("startdate")] public string StartDate { get; set; } [JsonProperty("tmac")] public long TMac { get; set; } [JsonProperty("uploadFlag")] public byte UploadFlag { get; set; } [JsonProperty("userNo")] public string UserNo { get; set; } [JsonProperty("userPIN")] public string UserPin { get; set; } } }