| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- using CommonObj.model;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CommonObj.lotoModel
- {
- public class rpTotalByDayConvetMoneyObj
- {
- [JsonProperty("date")]
- public string date { get; set; }
- [JsonProperty("total")]
- public string total { get; set; }
- [JsonProperty("money")]
- public string money { get; set; }
- [JsonProperty("totalSuccess")]
- public string totalSuccess { get; set; }
- [JsonProperty("moneySuccess")]
- public string moneySuccess { get; set; }
- [JsonProperty("totalPending")]
- public string totalPending { get; set; }
- [JsonProperty("moneyPending")]
- public string moneyPending { get; set; }
- [JsonProperty("totalRevert")]
- public string totalRevert { get; set; }
- [JsonProperty("moneyRevert")]
- public string moneyRevert { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class rpTotalByDayConvetMoneyListObj : Response
- {
- [JsonProperty("list")]
- public rpTotalByDayConvetMoneyObj[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class rpTotalByDayObj
- {
- [JsonProperty("date")]
- public string date { get; set; }
- [JsonProperty("player")]
- public string player { get; set; }
- [JsonProperty("ticket")]
- public string ticket { get; set; }
- [JsonProperty("money")]
- public string money { get; set; }
- [JsonProperty("palyerWin")]
- public string palyerWin { get; set; }
- [JsonProperty("ticketWin")]
- public string ticketWin { get; set; }
- [JsonProperty("moneyWin")]
- public string moneyWin { get; set; }
- [JsonProperty("benefit")]
- public string benefit { get; set; }
- [JsonProperty("sharing")]
- public string sharing { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class rpTotalByDayPrizeBoletObj
- {
- [JsonProperty("date")]
- public string date { get; set; }
- [JsonProperty("player")]
- public string player { get; set; }
- [JsonProperty("ticket")]
- public string ticket { get; set; }
- [JsonProperty("money")]
- public string money { get; set; }
- [JsonProperty("palyerWin")]
- public string palyerWin { get; set; }
- [JsonProperty("ticketWin")]
- public string ticketWin { get; set; }
- [JsonProperty("moneyWin")]
- public string moneyWin { get; set; }
- [JsonProperty("ticketWinLot1")]
- public string ticketWinLot1 { get; set; }
- [JsonProperty("moneyWinLot1")]
- public string moneyWinLot1 { get; set; }
- [JsonProperty("ticketWinLot2")]
- public string ticketWinLot2 { get; set; }
- [JsonProperty("moneyWinLot2")]
- public string moneyWinLot2 { get; set; }
- [JsonProperty("ticketWinLot3")]
- public string ticketWinLot3 { get; set; }
- [JsonProperty("moneyWinLot3")]
- public string moneyWinLot3 { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class rpTotalByDayListObj : Response
- {
- [JsonProperty("list")]
- public rpTotalByDayObj[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class rpTotalByDayPrizwBoletListObj : Response
- {
- [JsonProperty("list")]
- public rpTotalByDayPrizeBoletObj[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
-
- }
|