GetOrderListParamBean.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?php
  2. namespace App\Http\Bean\Util\Jutuike;
  3. use App\Http\Bean\BaseBean;
  4. class GetOrderListParamBean extends BaseBean
  5. {
  6. /**
  7. * 开始时间
  8. */
  9. public $start_time;
  10. /**
  11. * 结束时间
  12. */
  13. public $end_time;
  14. /**
  15. * 1: 按支付时间 2:按更新时间 3:创建时间 ,默认:3
  16. */
  17. public $query_type;
  18. /**
  19. * 订单统一状态,0:未付款 1:已付款 2:待结算 3:已结算 4:无效订单
  20. */
  21. public $status;
  22. /**
  23. * 订单编号
  24. */
  25. public $order_sn;
  26. /**
  27. * 页码
  28. */
  29. public $page;
  30. /**
  31. * 每页显示多少 默认 20 最大 100
  32. */
  33. public $pageSize;
  34. /**
  35. * @return mixed
  36. */
  37. public function getStartTime()
  38. {
  39. return $this->start_time;
  40. }
  41. /**
  42. * @param mixed $start_time
  43. */
  44. public function setStartTime($start_time): void
  45. {
  46. $this->start_time = $start_time;
  47. }
  48. /**
  49. * @return mixed
  50. */
  51. public function getEndTime()
  52. {
  53. return $this->end_time;
  54. }
  55. /**
  56. * @param mixed $end_time
  57. */
  58. public function setEndTime($end_time): void
  59. {
  60. $this->end_time = $end_time;
  61. }
  62. /**
  63. * @return mixed
  64. */
  65. public function getQueryType()
  66. {
  67. return $this->query_type;
  68. }
  69. /**
  70. * @param mixed $query_type
  71. */
  72. public function setQueryType($query_type): void
  73. {
  74. $this->query_type = $query_type;
  75. }
  76. /**
  77. * @return mixed
  78. */
  79. public function getStatus()
  80. {
  81. return $this->status;
  82. }
  83. /**
  84. * @param mixed $status
  85. */
  86. public function setStatus($status): void
  87. {
  88. $this->status = $status;
  89. }
  90. /**
  91. * @return mixed
  92. */
  93. public function getOrderSn()
  94. {
  95. return $this->order_sn;
  96. }
  97. /**
  98. * @param mixed $order_sn
  99. */
  100. public function setOrderSn($order_sn): void
  101. {
  102. $this->order_sn = $order_sn;
  103. }
  104. /**
  105. * @return mixed
  106. */
  107. public function getPage()
  108. {
  109. return $this->page;
  110. }
  111. /**
  112. * @param mixed $page
  113. */
  114. public function setPage($page): void
  115. {
  116. $this->page = $page;
  117. }
  118. /**
  119. * @return mixed
  120. */
  121. public function getPageSize()
  122. {
  123. return $this->pageSize;
  124. }
  125. /**
  126. * @param mixed $pageSize
  127. */
  128. public function setPageSize($pageSize): void
  129. {
  130. $this->pageSize = $pageSize;
  131. }
  132. }