| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace UnionOpenStatisticsRedpacketPidQuery;
- class RedPacketPidEffectDataReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.statistics.RedPacketPidEffectDataReq";
- }
-
- private $actId;
-
- public function setActId($actId){
- $this->params['actId'] = $actId;
- }
- public function getActId(){
- return $this->actId;
- }
-
- private $pid;
-
- public function setPid($pid){
- $this->params['pid'] = $pid;
- }
- public function getPid(){
- return $this->pid;
- }
-
- 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;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|