rpTotalByDayObj.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. using CommonObj.model;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace CommonObj.lotoModel
  7. {
  8. public class rpTotalByDayConvetMoneyObj
  9. {
  10. [JsonProperty("date")]
  11. public string date { get; set; }
  12. [JsonProperty("total")]
  13. public string total { get; set; }
  14. [JsonProperty("money")]
  15. public string money { get; set; }
  16. [JsonProperty("totalSuccess")]
  17. public string totalSuccess { get; set; }
  18. [JsonProperty("moneySuccess")]
  19. public string moneySuccess { get; set; }
  20. [JsonProperty("totalPending")]
  21. public string totalPending { get; set; }
  22. [JsonProperty("moneyPending")]
  23. public string moneyPending { get; set; }
  24. [JsonProperty("totalRevert")]
  25. public string totalRevert { get; set; }
  26. [JsonProperty("moneyRevert")]
  27. public string moneyRevert { get; set; }
  28. public override string ToString()
  29. {
  30. return JsonConvert.SerializeObject(this);
  31. }
  32. }
  33. public class rpTotalByDayConvetMoneyListObj : Response
  34. {
  35. [JsonProperty("list")]
  36. public rpTotalByDayConvetMoneyObj[] list { get; set; }
  37. public override string ToString()
  38. {
  39. return JsonConvert.SerializeObject(this);
  40. }
  41. }
  42. public class rpTotalByDayObj
  43. {
  44. [JsonProperty("date")]
  45. public string date { get; set; }
  46. [JsonProperty("player")]
  47. public string player { get; set; }
  48. [JsonProperty("ticket")]
  49. public string ticket { get; set; }
  50. [JsonProperty("money")]
  51. public string money { get; set; }
  52. [JsonProperty("palyerWin")]
  53. public string palyerWin { get; set; }
  54. [JsonProperty("ticketWin")]
  55. public string ticketWin { get; set; }
  56. [JsonProperty("moneyWin")]
  57. public string moneyWin { get; set; }
  58. [JsonProperty("benefit")]
  59. public string benefit { get; set; }
  60. [JsonProperty("sharing")]
  61. public string sharing { get; set; }
  62. public override string ToString()
  63. {
  64. return JsonConvert.SerializeObject(this);
  65. }
  66. }
  67. public class rpTotalByDayPrizeBoletObj
  68. {
  69. [JsonProperty("date")]
  70. public string date { get; set; }
  71. [JsonProperty("player")]
  72. public string player { get; set; }
  73. [JsonProperty("ticket")]
  74. public string ticket { get; set; }
  75. [JsonProperty("money")]
  76. public string money { get; set; }
  77. [JsonProperty("palyerWin")]
  78. public string palyerWin { get; set; }
  79. [JsonProperty("ticketWin")]
  80. public string ticketWin { get; set; }
  81. [JsonProperty("moneyWin")]
  82. public string moneyWin { get; set; }
  83. [JsonProperty("ticketWinLot1")]
  84. public string ticketWinLot1 { get; set; }
  85. [JsonProperty("moneyWinLot1")]
  86. public string moneyWinLot1 { get; set; }
  87. [JsonProperty("ticketWinLot2")]
  88. public string ticketWinLot2 { get; set; }
  89. [JsonProperty("moneyWinLot2")]
  90. public string moneyWinLot2 { get; set; }
  91. [JsonProperty("ticketWinLot3")]
  92. public string ticketWinLot3 { get; set; }
  93. [JsonProperty("moneyWinLot3")]
  94. public string moneyWinLot3 { get; set; }
  95. public override string ToString()
  96. {
  97. return JsonConvert.SerializeObject(this);
  98. }
  99. }
  100. public class rpTotalByDayListObj : Response
  101. {
  102. [JsonProperty("list")]
  103. public rpTotalByDayObj[] list { get; set; }
  104. public override string ToString()
  105. {
  106. return JsonConvert.SerializeObject(this);
  107. }
  108. }
  109. public class rpTotalByDayPrizwBoletListObj : Response
  110. {
  111. [JsonProperty("list")]
  112. public rpTotalByDayPrizeBoletObj[] list { get; set; }
  113. public override string ToString()
  114. {
  115. return JsonConvert.SerializeObject(this);
  116. }
  117. }
  118. }