cmsTraficDetail.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Newtonsoft.Json;
  6. namespace ApiProcess.Models.bet
  7. {
  8. public class cmsTraficDetail
  9. {
  10. [JsonProperty("seq")]
  11. public string seq { get; set; }
  12. [JsonProperty("gameName")]
  13. public string gameName { get; set; }
  14. [JsonProperty("billCode")]
  15. public string billCode { get; set; }
  16. [JsonProperty("tranCode")]
  17. public string tranCode { get; set; }
  18. [JsonProperty("date")]
  19. public string date { get; set; }
  20. [JsonProperty("cusName")]
  21. public string cusName { get; set; }
  22. [JsonProperty("msisdn")]
  23. public string msisdn { get; set; }
  24. [JsonProperty("quantity")]
  25. public string quantity { get; set; }
  26. [JsonProperty("price")]
  27. public string price { get; set; }
  28. [JsonProperty("moneyBeforeTax")]
  29. public string moneyBeforeTax { get; set; }
  30. [JsonProperty("tax")]
  31. public string tax { get; set; }
  32. [JsonProperty("moneyTax")]
  33. public string moneyTax { get; set; }
  34. [JsonProperty("moneyAfterTax")]
  35. public string moneyAfterTax { get; set; }
  36. public override string ToString()
  37. {
  38. return JsonConvert.SerializeObject(this);
  39. }
  40. }
  41. public class cmsTraficDetailList : ResCommnon
  42. {
  43. [JsonProperty("list")]
  44. public cmsTraficDetail[] list { get; set; }
  45. public override string ToString()
  46. {
  47. return JsonConvert.SerializeObject(this);
  48. }
  49. }
  50. }