TaobaoTbkDgCpaActivityDetailPageResult.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability3261.Domain;
  5. public class TaobaoTbkDgCpaActivityDetailPageResult
  6. {
  7. /*
  8. 数据结果
  9. */
  10. private IList<TaobaoTbkDgCpaActivityDetailResults>? results;
  11. /*
  12. 上一页页码
  13. */
  14. private long? prePage;
  15. /*
  16. 下一页页码
  17. */
  18. private long? nextPage;
  19. /*
  20. 当前页码
  21. */
  22. private long? pageNo;
  23. /*
  24. 总共页数
  25. */
  26. private long? totalPages;
  27. /*
  28. 每页条数
  29. */
  30. private long? pageSize;
  31. /*
  32. 是否有下一页
  33. */
  34. private bool? hasNext;
  35. /*
  36. 总条数
  37. */
  38. private long? totalCount;
  39. /*
  40. 是否有下一页
  41. */
  42. private bool? hasPre;
  43. /*
  44. 数据批次号(时间戳)
  45. */
  46. private DateTime? runtime;
  47. [JsonPropertyName("results")]
  48. public IList<TaobaoTbkDgCpaActivityDetailResults>? Results
  49. {
  50. get => results;
  51. set => this.results = value;
  52. }
  53. [JsonPropertyName("pre_page")]
  54. public long? PrePage
  55. {
  56. get => prePage;
  57. set => this.prePage = value;
  58. }
  59. [JsonPropertyName("next_page")]
  60. public long? NextPage
  61. {
  62. get => nextPage;
  63. set => this.nextPage = value;
  64. }
  65. [JsonPropertyName("page_no")]
  66. public long? PageNo
  67. {
  68. get => pageNo;
  69. set => this.pageNo = value;
  70. }
  71. [JsonPropertyName("total_pages")]
  72. public long? TotalPages
  73. {
  74. get => totalPages;
  75. set => this.totalPages = value;
  76. }
  77. [JsonPropertyName("page_size")]
  78. public long? PageSize
  79. {
  80. get => pageSize;
  81. set => this.pageSize = value;
  82. }
  83. [JsonPropertyName("has_next")]
  84. public bool? HasNext
  85. {
  86. get => hasNext;
  87. set => this.hasNext = value;
  88. }
  89. [JsonPropertyName("total_count")]
  90. public long? TotalCount
  91. {
  92. get => totalCount;
  93. set => this.totalCount = value;
  94. }
  95. [JsonPropertyName("has_pre")]
  96. public bool? HasPre
  97. {
  98. get => hasPre;
  99. set => this.hasPre = value;
  100. }
  101. [JsonPropertyName("runtime")]
  102. public DateTime? Runtime
  103. {
  104. get => runtime;
  105. set => this.runtime = value;
  106. }
  107. }