ticketByUserObj.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 ticketByUserObj
  9. {
  10. [JsonProperty("code")]
  11. public string code { get; set; }
  12. [JsonProperty("money")]
  13. public string money { get; set; }
  14. public override string ToString()
  15. {
  16. return JsonConvert.SerializeObject(this);
  17. }
  18. }
  19. public class responseTicketByUserObj : Response
  20. {
  21. [JsonProperty("requestId")]
  22. public string requestId { get; set; }
  23. [JsonProperty("termObj")]
  24. public termObj termObj { get; set; }
  25. [JsonProperty("isPromotion")]
  26. public string isPromotion { get; set; }
  27. [JsonProperty("totalMoney")]
  28. public string totalMoney { get; set; }
  29. [JsonProperty("totalMoneyPromotion")]
  30. public string totalMoneyPromotion { get; set; }
  31. [JsonProperty("totalMoneyPayment")]
  32. public string totalMoneyPayment { get; set; }
  33. [JsonProperty("promotionId")]
  34. public string promotionId { get; set; }
  35. [JsonProperty("transId")]
  36. public string transId { get; set; }
  37. public override string ToString()
  38. {
  39. return JsonConvert.SerializeObject(this);
  40. }
  41. }
  42. }