AuthMaterialQueryReq.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. namespace UnionOpenExchangeMediaMaterialQuery;
  3. class AuthMaterialQueryReq{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.union.open.gateway.api.dto.exchange.AuthMaterialQueryReq";
  7. }
  8. private $pageIndex;
  9. public function setPageIndex($pageIndex){
  10. $this->params['pageIndex'] = $pageIndex;
  11. }
  12. public function getPageIndex(){
  13. return $this->pageIndex;
  14. }
  15. private $pageSize;
  16. public function setPageSize($pageSize){
  17. $this->params['pageSize'] = $pageSize;
  18. }
  19. public function getPageSize(){
  20. return $this->pageSize;
  21. }
  22. private $startTime;
  23. public function setStartTime($startTime){
  24. $this->params['startTime'] = $startTime;
  25. }
  26. public function getStartTime(){
  27. return $this->startTime;
  28. }
  29. private $endTime;
  30. public function setEndTime($endTime){
  31. $this->params['endTime'] = $endTime;
  32. }
  33. public function getEndTime(){
  34. return $this->endTime;
  35. }
  36. function getInstance(){
  37. return $this->params;
  38. }
  39. }
  40. ?>