| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?php
- namespace UnionOpenPromotionSecretGet;
- class SecretReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.promotion.secret.SecretReq";
- }
-
- private $pin;
-
- public function setPin($pin){
- $this->params['pin'] = $pin;
- }
- public function getPin(){
- return $this->pin;
- }
-
- 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 $tu;
-
- public function setTu($tu){
- $this->params['tu'] = $tu;
- }
- public function getTu(){
- return $this->tu;
- }
-
- private $tuName;
-
- public function setTuName($tuName){
- $this->params['tuName'] = $tuName;
- }
- public function getTuName(){
- return $this->tuName;
- }
-
- private $webId;
-
- public function setWebId($webId){
- $this->params['webId'] = $webId;
- }
- public function getWebId(){
- return $this->webId;
- }
-
- private $effectiveStartTime;
-
- public function setEffectiveStartTime($effectiveStartTime){
- $this->params['effectiveStartTime'] = $effectiveStartTime;
- }
- public function getEffectiveStartTime(){
- return $this->effectiveStartTime;
- }
-
- private $effectiveEndTime;
-
- public function setEffectiveEndTime($effectiveEndTime){
- $this->params['effectiveEndTime'] = $effectiveEndTime;
- }
- public function getEffectiveEndTime(){
- return $this->effectiveEndTime;
- }
-
- private $channelId;
-
- public function setChannelId($channelId){
- $this->params['channelId'] = $channelId;
- }
- public function getChannelId(){
- return $this->channelId;
- }
-
- private $subUnionId;
-
- public function setSubUnionId($subUnionId){
- $this->params['subUnionId'] = $subUnionId;
- }
- public function getSubUnionId(){
- return $this->subUnionId;
- }
-
- private $promotionType;
-
- public function setPromotionType($promotionType){
- $this->params['promotionType'] = $promotionType;
- }
- public function getPromotionType(){
- return $this->promotionType;
- }
-
- private $positionId;
-
- public function setPositionId($positionId){
- $this->params['positionId'] = $positionId;
- }
- public function getPositionId(){
- return $this->positionId;
- }
-
- private $pid;
-
- public function setPid($pid){
- $this->params['pid'] = $pid;
- }
- public function getPid(){
- return $this->pid;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|