TaobaoTbkOrderDetailsGetOrderPage.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability414.Domain;
  5. public class TaobaoTbkOrderDetailsGetOrderPage
  6. {
  7. /*
  8. PublisherOrderDto
  9. */
  10. private IList<TaobaoTbkOrderDetailsGetPublisherOrderDto>? results;
  11. /*
  12. 是否还有上一页
  13. */
  14. private bool? hasPre;
  15. /*
  16. 位点字段,由调用方原样传递
  17. */
  18. private string? positionIndex;
  19. /*
  20. 是否还有下一页
  21. */
  22. private bool? hasNext;
  23. /*
  24. 页码
  25. */
  26. private long? pageNo;
  27. /*
  28. 页大小
  29. */
  30. private long? pageSize;
  31. [JsonPropertyName("results")]
  32. public IList<TaobaoTbkOrderDetailsGetPublisherOrderDto>? Results
  33. {
  34. get => results;
  35. set => this.results = value;
  36. }
  37. [JsonPropertyName("has_pre")]
  38. public bool? HasPre
  39. {
  40. get => hasPre;
  41. set => this.hasPre = value;
  42. }
  43. [JsonPropertyName("position_index")]
  44. public string? PositionIndex
  45. {
  46. get => positionIndex;
  47. set => this.positionIndex = value;
  48. }
  49. [JsonPropertyName("has_next")]
  50. public bool? HasNext
  51. {
  52. get => hasNext;
  53. set => this.hasNext = value;
  54. }
  55. [JsonPropertyName("page_no")]
  56. public long? PageNo
  57. {
  58. get => pageNo;
  59. set => this.pageNo = value;
  60. }
  61. [JsonPropertyName("page_size")]
  62. public long? PageSize
  63. {
  64. get => pageSize;
  65. set => this.pageSize = value;
  66. }
  67. }