| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <?php
- namespace UnionOpenCouponGiftGet;
- class CouponReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.coupon.gift.CreateGiftCouponReq";
- }
-
- private $skuMaterialId;
-
- public function setSkuMaterialId($skuMaterialId){
- $this->params['skuMaterialId'] = $skuMaterialId;
- }
- public function getSkuMaterialId(){
- return $this->skuMaterialId;
- }
-
- private $discount;
-
- public function setDiscount($discount){
- $this->params['discount'] = $discount;
- }
- public function getDiscount(){
- return $this->discount;
- }
-
- private $amount;
-
- public function setAmount($amount){
- $this->params['amount'] = $amount;
- }
- public function getAmount(){
- return $this->amount;
- }
-
- private $receiveStartTime;
-
- public function setReceiveStartTime($receiveStartTime){
- $this->params['receiveStartTime'] = $receiveStartTime;
- }
- public function getReceiveStartTime(){
- return $this->receiveStartTime;
- }
-
- private $receiveEndTime;
-
- public function setReceiveEndTime($receiveEndTime){
- $this->params['receiveEndTime'] = $receiveEndTime;
- }
- public function getReceiveEndTime(){
- return $this->receiveEndTime;
- }
-
- private $effectiveDays;
-
- public function setEffectiveDays($effectiveDays){
- $this->params['effectiveDays'] = $effectiveDays;
- }
- public function getEffectiveDays(){
- return $this->effectiveDays;
- }
-
- private $isSpu;
-
- public function setIsSpu($isSpu){
- $this->params['isSpu'] = $isSpu;
- }
- public function getIsSpu(){
- return $this->isSpu;
- }
-
- private $expireType;
-
- public function setExpireType($expireType){
- $this->params['expireType'] = $expireType;
- }
- public function getExpireType(){
- return $this->expireType;
- }
-
- private $useStartTime;
-
- public function setUseStartTime($useStartTime){
- $this->params['useStartTime'] = $useStartTime;
- }
- public function getUseStartTime(){
- return $this->useStartTime;
- }
-
- private $useEndTime;
-
- public function setUseEndTime($useEndTime){
- $this->params['useEndTime'] = $useEndTime;
- }
- public function getUseEndTime(){
- return $this->useEndTime;
- }
-
- private $share;
-
- public function setShare($share){
- $this->params['share'] = $share;
- }
- public function getShare(){
- return $this->share;
- }
-
- private $contentMatch;
-
- public function setContentMatch($contentMatch){
- $this->params['contentMatch'] = $contentMatch;
- }
- public function getContentMatch(){
- return $this->contentMatch;
- }
-
- private $couponTitle;
-
- public function setCouponTitle($couponTitle){
- $this->params['couponTitle'] = $couponTitle;
- }
- public function getCouponTitle(){
- return $this->couponTitle;
- }
-
- private $contentMatchMedias;
-
- public function setContentMatchMedias($contentMatchMedias){
- $this->params['contentMatchMedias'] = $contentMatchMedias;
- }
- public function getContentMatchMedias(){
- return $this->contentMatchMedias;
- }
-
- private $showInMedias;
-
- public function setShowInMedias($showInMedias){
- $this->params['showInMedias'] = $showInMedias;
- }
- public function getShowInMedias(){
- return $this->showInMedias;
- }
-
- private $targetType;
-
- public function setTargetType($targetType){
- $this->params['targetType'] = $targetType;
- }
- public function getTargetType(){
- return $this->targetType;
- }
-
- private $childPromoters;
-
- public function setChildPromoters($childPromoters){
- $this->params['childPromoters'] = $childPromoters;
- }
- public function getChildPromoters(){
- return $this->childPromoters;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|