| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?php
- namespace UnionOpenPromotionBysubunionidGet;
- class PromotionCodeReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.promotion.base.PromotionCodeReq";
- }
-
- private $materialId;
-
- public function setMaterialId($materialId){
- $this->params['materialId'] = $materialId;
- }
- public function getMaterialId(){
- return $this->materialId;
- }
-
- private $subUnionId;
-
- public function setSubUnionId($subUnionId){
- $this->params['subUnionId'] = $subUnionId;
- }
- public function getSubUnionId(){
- return $this->subUnionId;
- }
-
- 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;
- }
-
- private $couponUrl;
-
- public function setCouponUrl($couponUrl){
- $this->params['couponUrl'] = $couponUrl;
- }
- public function getCouponUrl(){
- return $this->couponUrl;
- }
-
- private $chainType;
-
- public function setChainType($chainType){
- $this->params['chainType'] = $chainType;
- }
- public function getChainType(){
- return $this->chainType;
- }
-
- private $giftCouponKey;
-
- public function setGiftCouponKey($giftCouponKey){
- $this->params['giftCouponKey'] = $giftCouponKey;
- }
- public function getGiftCouponKey(){
- return $this->giftCouponKey;
- }
-
- private $channelId;
-
- public function setChannelId($channelId){
- $this->params['channelId'] = $channelId;
- }
- public function getChannelId(){
- return $this->channelId;
- }
-
- private $command;
-
- public function setCommand($command){
- $this->params['command'] = $command;
- }
- public function getCommand(){
- return $this->command;
- }
-
- private $weChatType;
-
- public function setWeChatType($weChatType){
- $this->params['weChatType'] = $weChatType;
- }
- public function getWeChatType(){
- return $this->weChatType;
- }
-
- private $rid;
-
- public function setRid($rid){
- $this->params['rid'] = $rid;
- }
- public function getRid(){
- return $this->rid;
- }
-
- private $sceneId;
-
- public function setSceneId($sceneId){
- $this->params['sceneId'] = $sceneId;
- }
- public function getSceneId(){
- return $this->sceneId;
- }
-
- private $proType;
-
- public function setProType($proType){
- $this->params['proType'] = $proType;
- }
- public function getProType(){
- return $this->proType;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|