RedPacketPidEffectDataReq.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. namespace UnionOpenStatisticsRedpacketPidQuery;
  3. class RedPacketPidEffectDataReq{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.union.open.gateway.api.dto.statistics.RedPacketPidEffectDataReq";
  7. }
  8. private $actId;
  9. public function setActId($actId){
  10. $this->params['actId'] = $actId;
  11. }
  12. public function getActId(){
  13. return $this->actId;
  14. }
  15. private $pid;
  16. public function setPid($pid){
  17. $this->params['pid'] = $pid;
  18. }
  19. public function getPid(){
  20. return $this->pid;
  21. }
  22. private $startDate;
  23. public function setStartDate($startDate){
  24. $this->params['startDate'] = $startDate;
  25. }
  26. public function getStartDate(){
  27. return $this->startDate;
  28. }
  29. private $endDate;
  30. public function setEndDate($endDate){
  31. $this->params['endDate'] = $endDate;
  32. }
  33. public function getEndDate(){
  34. return $this->endDate;
  35. }
  36. private $pageIndex;
  37. public function setPageIndex($pageIndex){
  38. $this->params['pageIndex'] = $pageIndex;
  39. }
  40. public function getPageIndex(){
  41. return $this->pageIndex;
  42. }
  43. private $pageSize;
  44. public function setPageSize($pageSize){
  45. $this->params['pageSize'] = $pageSize;
  46. }
  47. public function getPageSize(){
  48. return $this->pageSize;
  49. }
  50. function getInstance(){
  51. return $this->params;
  52. }
  53. }
  54. ?>