| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- namespace UnionOpenStatisticsGiftcouponQuery;
- class EffectDataReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.statistics.GiftCouponEffectDataReq";
- }
-
- private $skuId;
-
- public function setSkuId($skuId){
- $this->params['skuId'] = $skuId;
- }
- public function getSkuId(){
- return $this->skuId;
- }
-
- private $giftCouponKey;
-
- public function setGiftCouponKey($giftCouponKey){
- $this->params['giftCouponKey'] = $giftCouponKey;
- }
- public function getGiftCouponKey(){
- return $this->giftCouponKey;
- }
-
- private $createTime;
-
- public function setCreateTime($createTime){
- $this->params['createTime'] = $createTime;
- }
- public function getCreateTime(){
- return $this->createTime;
- }
-
- private $startTime;
-
- public function setStartTime($startTime){
- $this->params['startTime'] = $startTime;
- }
- public function getStartTime(){
- return $this->startTime;
- }
-
- private $key;
-
- public function setKey($key){
- $this->params['key'] = $key;
- }
- public function getKey(){
- return $this->key;
- }
-
- private $targetType;
-
- public function setTargetType($targetType){
- $this->params['targetType'] = $targetType;
- }
- public function getTargetType(){
- return $this->targetType;
- }
-
- private $pin;
-
- public function setPin($pin){
- $this->params['pin'] = $pin;
- }
- public function getPin(){
- return $this->pin;
- }
-
- private $itemId;
-
- public function setItemId($itemId){
- $this->params['itemId'] = $itemId;
- }
- public function getItemId(){
- return $this->itemId;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|