| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?php
- namespace UnionOpenPromotionSecretQuery;
- class SecretQueryReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.promotion.secret.SecretQueryReq";
- }
-
- 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 $id;
-
- public function setId($id){
- $this->params['id'] = $id;
- }
- public function getId(){
- return $this->id;
- }
-
- private $applyStartTime;
-
- public function setApplyStartTime($applyStartTime){
- $this->params['applyStartTime'] = $applyStartTime;
- }
- public function getApplyStartTime(){
- return $this->applyStartTime;
- }
-
- private $applyEndTime;
-
- public function setApplyEndTime($applyEndTime){
- $this->params['applyEndTime'] = $applyEndTime;
- }
- public function getApplyEndTime(){
- return $this->applyEndTime;
- }
-
- private $secretThemeId;
-
- public function setSecretThemeId($secretThemeId){
- $this->params['secretThemeId'] = $secretThemeId;
- }
- public function getSecretThemeId(){
- return $this->secretThemeId;
- }
-
- private $secretKeyWord;
-
- public function setSecretKeyWord($secretKeyWord){
- $this->params['secretKeyWord'] = $secretKeyWord;
- }
- public function getSecretKeyWord(){
- return $this->secretKeyWord;
- }
-
- private $status;
-
- public function setStatus($status){
- $this->params['status'] = $status;
- }
- public function getStatus(){
- return $this->status;
- }
-
- private $channelId;
-
- public function setChannelId($channelId){
- $this->params['channelId'] = $channelId;
- }
- public function getChannelId(){
- return $this->channelId;
- }
-
- private $pin;
-
- public function setPin($pin){
- $this->params['pin'] = $pin;
- }
- public function getPin(){
- return $this->pin;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|