using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace Dfs.WayneChina.SpsDataCourier.Models { public class AccountInfo { //DateTime in format of 'yyyy-MM-dd HH:mm:ss' [JsonProperty("acctDate")] public string AcctDate { get; set; } [JsonProperty("acctID")] public string AcctId { get; set; } [JsonProperty("acctSNo")] public short AcctSNo { get; set; } [JsonProperty("acctState")] public byte AcctState { get; set; } [JsonProperty("acctType")] public byte AcctType { get; set; } [JsonProperty("address")] public string Address { get; set; } [JsonProperty("amount")] public long Amount { get; set; } [JsonProperty("belongTo")] public string BelongTo { get; set; } [JsonProperty("certfNo")] public string CertfNo { get; set; } [JsonProperty("certfType")] public string CertfType { get; set; } [JsonProperty("enableSms")] public byte EnableSms { get; set; } [JsonProperty("fuelNo")] public string FuelNo { get; set; } [JsonProperty("gid")] public long Gid { get; set; } [JsonProperty("gift")] public int Gift { get; set; } [JsonProperty("phoneNo")] public string PhoneNo { get; set; } [JsonProperty("rechgTotal")] public long RechgTotal { get; set; } [JsonProperty("sno")] public short SNo { get; set; } [JsonProperty("tmac")] public long TMac { get; set; } [JsonProperty("uploadFlag")] public byte UploadFlag { get; set; } [JsonProperty("waitMalloc")] public uint WaitMalloc { get; set; } } }