RechargeDebitInfo.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 RechargeDebitInfo
  8. {
  9. [JsonProperty("acctID")]
  10. public string AcctId { get; set; }
  11. [JsonProperty("bal")]
  12. public int Bal { get; set; }
  13. [JsonProperty("billFlag")]
  14. public byte BillFlag { get; set; }
  15. [JsonProperty("billType")]
  16. public byte BillType { get; set; }
  17. [JsonProperty("cardNo")]
  18. public string CardNo { get; set; }
  19. [JsonProperty("ctc")]
  20. public int CTC { get; set; }
  21. [JsonProperty("disIntegral")]
  22. public int DisIntegral { get; set; }
  23. [JsonProperty("disMoney")]
  24. public int DisMoney { get; set; }
  25. [JsonProperty("discountNo")]
  26. public int DiscountNo { get; set; }
  27. [JsonProperty("gid")]
  28. public long Gid { get; set; }
  29. [JsonProperty("mon")]
  30. public int Mon { get; set; }
  31. [JsonProperty("operNo")]
  32. public string OperNo { get; set; }
  33. [JsonProperty("rechgType")]
  34. public byte RechgType { get; set; }
  35. [JsonProperty("sno")]
  36. public short SNo { get; set; }
  37. [JsonProperty("tmac")]
  38. public long TMac { get; set; }
  39. [JsonProperty("trdType")]
  40. public byte TrdType { get; set; }
  41. [JsonProperty("ttc")]
  42. public int TTC { get; set; }
  43. [JsonProperty("ttctime")]
  44. public string TTCTime { get; set; }
  45. [JsonProperty("uploadFlag")]
  46. public byte UploadFlag { get; set; }
  47. }
  48. }