1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.SpsDataCourier.Models
- {
- public class AccountInfo
- {
-
- [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; }
- }
- }
|