| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- namespace UnionOpenExchangeMediaMaterialQuery;
- class AuthMaterialQueryReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.exchange.AuthMaterialQueryReq";
- }
-
- private $pageIndex;
-
- public function setPageIndex($pageIndex){
- $this->params['pageIndex'] = $pageIndex;
- }
- public function getPageIndex(){
- return $this->pageIndex;
- }
-
- private $pageSize;
-
- public function setPageSize($pageSize){
- $this->params['pageSize'] = $pageSize;
- }
- public function getPageSize(){
- return $this->pageSize;
- }
-
- private $startTime;
-
- public function setStartTime($startTime){
- $this->params['startTime'] = $startTime;
- }
- public function getStartTime(){
- return $this->startTime;
- }
-
- private $endTime;
-
- public function setEndTime($endTime){
- $this->params['endTime'] = $endTime;
- }
- public function getEndTime(){
- return $this->endTime;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|