| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?php
- namespace UnionOpenStatisticsRedpacketQuery;
- class EffectDataReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.statistics.RedPacketEffectDataReq";
- }
-
- private $actId;
-
- public function setActId($actId){
- $this->params['actId'] = $actId;
- }
- public function getActId(){
- return $this->actId;
- }
-
- private $positionId;
-
- public function setPositionId($positionId){
- $this->params['positionId'] = $positionId;
- }
- public function getPositionId(){
- return $this->positionId;
- }
-
- private $startDate;
-
- public function setStartDate($startDate){
- $this->params['startDate'] = $startDate;
- }
- public function getStartDate(){
- return $this->startDate;
- }
-
- private $endDate;
-
- public function setEndDate($endDate){
- $this->params['endDate'] = $endDate;
- }
- public function getEndDate(){
- return $this->endDate;
- }
-
- 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 $key;
-
- public function setKey($key){
- $this->params['key'] = $key;
- }
- public function getKey(){
- return $this->key;
- }
-
- private $type;
-
- public function setType($type){
- $this->params['type'] = $type;
- }
- public function getType(){
- return $this->type;
- }
-
- private $channelIds;
-
- public function setChannelIds($channelIds){
- $this->params['channelIds'] = $channelIds;
- }
- public function getChannelIds(){
- return $this->channelIds;
- }
-
- private $pin;
-
- public function setPin($pin){
- $this->params['pin'] = $pin;
- }
- public function getPin(){
- return $this->pin;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|