ChannelRelationQueryReq.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. namespace UnionOpenChannelRelationQuery;
  3. class ChannelRelationQueryReq{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.union.open.gateway.api.dto.channel.relation.ChannelRelationQueryReq";
  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 $pageSize;
  16. public function setPageSize($pageSize){
  17. $this->params['pageSize'] = $pageSize;
  18. }
  19. public function getPageSize(){
  20. return $this->pageSize;
  21. }
  22. private $channelId;
  23. public function setChannelId($channelId){
  24. $this->params['channelId'] = $channelId;
  25. }
  26. public function getChannelId(){
  27. return $this->channelId;
  28. }
  29. private $pin;
  30. public function setPin($pin){
  31. $this->params['pin'] = $pin;
  32. }
  33. public function getPin(){
  34. return $this->pin;
  35. }
  36. function getInstance(){
  37. return $this->params;
  38. }
  39. }
  40. ?>