TaobaoJuItemsSearchPaginationResult.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability373.Domain;
  5. public class TaobaoJuItemsSearchPaginationResult
  6. {
  7. /*
  8. 当前页码
  9. */
  10. private long? currentPage;
  11. /*
  12. 扩展属性
  13. */
  14. private TaobaoJuItemsSearchExtend? extend;
  15. /*
  16. 商品数据
  17. */
  18. private IList<TaobaoJuItemsSearchItems>? modelList;
  19. /*
  20. 错误码
  21. */
  22. private string? msgCode;
  23. /*
  24. 错误信息
  25. */
  26. private string? msgInfo;
  27. /*
  28. 一页大小
  29. */
  30. private long? pageSize;
  31. /*
  32. 请求是否成功
  33. */
  34. private bool? success;
  35. /*
  36. 商品总数
  37. */
  38. private long? totalItem;
  39. /*
  40. 总页数
  41. */
  42. private long? totalPage;
  43. /*
  44. 埋点信息
  45. */
  46. private TaobaoJuItemsSearchTrackparams? trackParams;
  47. [JsonPropertyName("current_page")]
  48. public long? CurrentPage
  49. {
  50. get => currentPage;
  51. set => this.currentPage = value;
  52. }
  53. [JsonPropertyName("extend")]
  54. public TaobaoJuItemsSearchExtend? Extend
  55. {
  56. get => extend;
  57. set => this.extend = value;
  58. }
  59. [JsonPropertyName("model_list")]
  60. public IList<TaobaoJuItemsSearchItems>? ModelList
  61. {
  62. get => modelList;
  63. set => this.modelList = value;
  64. }
  65. [JsonPropertyName("msg_code")]
  66. public string? MsgCode
  67. {
  68. get => msgCode;
  69. set => this.msgCode = value;
  70. }
  71. [JsonPropertyName("msg_info")]
  72. public string? MsgInfo
  73. {
  74. get => msgInfo;
  75. set => this.msgInfo = value;
  76. }
  77. [JsonPropertyName("page_size")]
  78. public long? PageSize
  79. {
  80. get => pageSize;
  81. set => this.pageSize = value;
  82. }
  83. [JsonPropertyName("success")]
  84. public bool? Success
  85. {
  86. get => success;
  87. set => this.success = value;
  88. }
  89. [JsonPropertyName("total_item")]
  90. public long? TotalItem
  91. {
  92. get => totalItem;
  93. set => this.totalItem = value;
  94. }
  95. [JsonPropertyName("total_page")]
  96. public long? TotalPage
  97. {
  98. get => totalPage;
  99. set => this.totalPage = value;
  100. }
  101. [JsonPropertyName("track_params")]
  102. public TaobaoJuItemsSearchTrackparams? TrackParams
  103. {
  104. get => trackParams;
  105. set => this.trackParams = value;
  106. }
  107. }