123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- 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; }
-
- [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; }
-
- [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; }
-
- [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; }
-
- [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; }
- }
- }
|