| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace UnionOpenCpChannelQuery;
- class CpChannelQueryReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.cp.CpChannelReq";
- }
-
- private $pageIndex;
-
- public function setPageIndex($pageIndex){
- $this->params['pageIndex'] = $pageIndex;
- }
- public function getPageIndex(){
- return $this->pageIndex;
- }
-
- private $endDate;
-
- public function setEndDate($endDate){
- $this->params['endDate'] = $endDate;
- }
- public function getEndDate(){
- return $this->endDate;
- }
-
- private $pageSize;
-
- public function setPageSize($pageSize){
- $this->params['pageSize'] = $pageSize;
- }
- public function getPageSize(){
- return $this->pageSize;
- }
-
- private $idList;
-
- public function setIdList($idList){
- $this->params['idList'] = $idList;
- }
- public function getIdList(){
- return $this->idList;
- }
-
- private $startDate;
-
- public function setStartDate($startDate){
- $this->params['startDate'] = $startDate;
- }
- public function getStartDate(){
- return $this->startDate;
- }
-
- private $pin;
-
- public function setPin($pin){
- $this->params['pin'] = $pin;
- }
- public function getPin(){
- return $this->pin;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|