convertMoneyObj.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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 convertMoneyResponseObj: Response
  9. {
  10. [JsonProperty("paymentCode")]
  11. public string paymentCode { get; set; }
  12. public override string ToString()
  13. {
  14. return JsonConvert.SerializeObject(this);
  15. }
  16. }
  17. public class convertMoneyObj : Response
  18. {
  19. [JsonProperty("seq")]
  20. public string seq { get; set; }
  21. [JsonProperty("id")]
  22. public string id { get; set; }
  23. [JsonProperty("acountSend")]
  24. public string acountSend { get; set; }
  25. [JsonProperty("acountRecieve")]
  26. public string acountRecieve { get; set; }
  27. [JsonProperty("timeRequest")]
  28. public string timeRequest { get; set; }
  29. [JsonProperty("timeTopup")]
  30. public string timeTopup { get; set; }
  31. [JsonProperty("status")]
  32. public string status { get; set; }
  33. [JsonProperty("money")]
  34. public string money { get; set; }
  35. [JsonProperty("channelRequest")]
  36. public string channelRequest { get; set; }
  37. [JsonProperty("channelPayment")]
  38. public string channelPayment { get; set; }
  39. [JsonProperty("reqeustId")]
  40. public string reqeustId { get; set; }
  41. [JsonProperty("responseId")]
  42. public string responseId { get; set; }
  43. [JsonProperty("errCode")]
  44. public string errCode { get; set; }
  45. [JsonProperty("errMsg")]
  46. public string errMsg { get; set; }
  47. [JsonProperty("serviceId")]
  48. public string serviceId { get; set; }
  49. public override string ToString()
  50. {
  51. return JsonConvert.SerializeObject(this);
  52. }
  53. }
  54. public class convertMoneyListObj : Response
  55. {
  56. [JsonProperty("rowsOnPage")]
  57. public string rowsOnPage { get; set; }
  58. [JsonProperty("seqPage")]
  59. public string seqPage { get; set; }
  60. [JsonProperty("totalPage")]
  61. public string totalPage { get; set; }
  62. [JsonProperty("totalRow")]
  63. public string totalRow { get; set; }
  64. [JsonProperty("list")]
  65. public convertMoneyObj[] list { get; set; }
  66. public override string ToString()
  67. {
  68. return JsonConvert.SerializeObject(this);
  69. }
  70. }
  71. }