CpChannelQueryReq.php 1.5 KB

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