OrderListIncrementGetParamBean.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <?php
  2. namespace App\Http\Bean\Util\Pdd\Ddk;
  3. use App\Http\Bean\BaseBean;
  4. class OrderListIncrementGetParamBean extends BaseBean
  5. {
  6. /**
  7. * 是否为礼金订单,查询礼金订单时,订单类型不填(默认推广订单)。
  8. */
  9. private $cashGiftOrder;
  10. /**
  11. * 查询结束时间,和开始时间相差不能超过24小时。note:此时间为时间戳,指格林威治时间 1970 年01 月 01 日 00 时 00 分 00 秒(北京时间 1970 年 01 月 01 日 08 时 00 分 00 秒)起至现在的总秒数
  12. */
  13. private $endUpdateTime;
  14. /**
  15. * 第几页
  16. */
  17. private $page;
  18. /**
  19. * 返回的每页结果订单数
  20. */
  21. private $pageSize;
  22. /**
  23. * 订单类型:1-推广订单;2-直播间订单
  24. */
  25. private $queryOrderType;
  26. /**
  27. * 是否返回总数,默认为true
  28. */
  29. private $returnCount;
  30. /**
  31. * 最近90天内多多进宝商品订单更新时间
  32. */
  33. private $startUpdateTime;
  34. /**
  35. * @return mixed
  36. */
  37. public function getCashGiftOrder()
  38. {
  39. return $this->cashGiftOrder;
  40. }
  41. /**
  42. * @param mixed $cashGiftOrder
  43. */
  44. public function setCashGiftOrder($cashGiftOrder): void
  45. {
  46. $this->cashGiftOrder = $cashGiftOrder;
  47. }
  48. /**
  49. * @return mixed
  50. */
  51. public function getEndUpdateTime()
  52. {
  53. return $this->endUpdateTime;
  54. }
  55. /**
  56. * @param mixed $endUpdateTime
  57. */
  58. public function setEndUpdateTime($endUpdateTime): void
  59. {
  60. $this->endUpdateTime = $endUpdateTime;
  61. }
  62. /**
  63. * @return mixed
  64. */
  65. public function getPage()
  66. {
  67. return $this->page;
  68. }
  69. /**
  70. * @param mixed $page
  71. */
  72. public function setPage($page): void
  73. {
  74. $this->page = $page;
  75. }
  76. /**
  77. * @return mixed
  78. */
  79. public function getPageSize()
  80. {
  81. return $this->pageSize;
  82. }
  83. /**
  84. * @param mixed $pageSize
  85. */
  86. public function setPageSize($pageSize): void
  87. {
  88. $this->pageSize = $pageSize;
  89. }
  90. /**
  91. * @return mixed
  92. */
  93. public function getQueryOrderType()
  94. {
  95. return $this->queryOrderType;
  96. }
  97. /**
  98. * @param mixed $queryOrderType
  99. */
  100. public function setQueryOrderType($queryOrderType): void
  101. {
  102. $this->queryOrderType = $queryOrderType;
  103. }
  104. /**
  105. * @return mixed
  106. */
  107. public function getReturnCount()
  108. {
  109. return $this->returnCount;
  110. }
  111. /**
  112. * @param mixed $returnCount
  113. */
  114. public function setReturnCount($returnCount): void
  115. {
  116. $this->returnCount = $returnCount;
  117. }
  118. /**
  119. * @return mixed
  120. */
  121. public function getStartUpdateTime()
  122. {
  123. return $this->startUpdateTime;
  124. }
  125. /**
  126. * @param mixed $startUpdateTime
  127. */
  128. public function setStartUpdateTime($startUpdateTime): void
  129. {
  130. $this->startUpdateTime = $startUpdateTime;
  131. }
  132. }