AccountInfo.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Dfs.WayneChina.SpsDataCourier.Models
  6. {
  7. public class AccountInfo
  8. {
  9. //DateTime in format of 'yyyy-MM-dd HH:mm:ss'
  10. [JsonProperty("acctDate")]
  11. public string AcctDate { get; set; }
  12. [JsonProperty("acctID")]
  13. public string AcctId { get; set; }
  14. [JsonProperty("acctSNo")]
  15. public short AcctSNo { get; set; }
  16. [JsonProperty("acctState")]
  17. public byte AcctState { get; set; }
  18. [JsonProperty("acctType")]
  19. public byte AcctType { get; set; }
  20. [JsonProperty("address")]
  21. public string Address { get; set; }
  22. [JsonProperty("amount")]
  23. public long Amount { get; set; }
  24. [JsonProperty("belongTo")]
  25. public string BelongTo { get; set; }
  26. [JsonProperty("certfNo")]
  27. public string CertfNo { get; set; }
  28. [JsonProperty("certfType")]
  29. public string CertfType { get; set; }
  30. [JsonProperty("enableSms")]
  31. public byte EnableSms { get; set; }
  32. [JsonProperty("fuelNo")]
  33. public string FuelNo { get; set; }
  34. [JsonProperty("gid")]
  35. public long Gid { get; set; }
  36. [JsonProperty("gift")]
  37. public int Gift { get; set; }
  38. [JsonProperty("phoneNo")]
  39. public string PhoneNo { get; set; }
  40. [JsonProperty("rechgTotal")]
  41. public long RechgTotal { get; set; }
  42. [JsonProperty("sno")]
  43. public short SNo { get; set; }
  44. [JsonProperty("tmac")]
  45. public long TMac { get; set; }
  46. [JsonProperty("uploadFlag")]
  47. public byte UploadFlag { get; set; }
  48. [JsonProperty("waitMalloc")]
  49. public uint WaitMalloc { get; set; }
  50. }
  51. }