SecretQueryReq.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?php
  2. namespace UnionOpenPromotionSecretQuery;
  3. class SecretQueryReq{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.union.open.gateway.api.dto.promotion.secret.SecretQueryReq";
  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 $id;
  23. public function setId($id){
  24. $this->params['id'] = $id;
  25. }
  26. public function getId(){
  27. return $this->id;
  28. }
  29. private $applyStartTime;
  30. public function setApplyStartTime($applyStartTime){
  31. $this->params['applyStartTime'] = $applyStartTime;
  32. }
  33. public function getApplyStartTime(){
  34. return $this->applyStartTime;
  35. }
  36. private $applyEndTime;
  37. public function setApplyEndTime($applyEndTime){
  38. $this->params['applyEndTime'] = $applyEndTime;
  39. }
  40. public function getApplyEndTime(){
  41. return $this->applyEndTime;
  42. }
  43. private $secretThemeId;
  44. public function setSecretThemeId($secretThemeId){
  45. $this->params['secretThemeId'] = $secretThemeId;
  46. }
  47. public function getSecretThemeId(){
  48. return $this->secretThemeId;
  49. }
  50. private $secretKeyWord;
  51. public function setSecretKeyWord($secretKeyWord){
  52. $this->params['secretKeyWord'] = $secretKeyWord;
  53. }
  54. public function getSecretKeyWord(){
  55. return $this->secretKeyWord;
  56. }
  57. private $status;
  58. public function setStatus($status){
  59. $this->params['status'] = $status;
  60. }
  61. public function getStatus(){
  62. return $this->status;
  63. }
  64. private $channelId;
  65. public function setChannelId($channelId){
  66. $this->params['channelId'] = $channelId;
  67. }
  68. public function getChannelId(){
  69. return $this->channelId;
  70. }
  71. private $pin;
  72. public function setPin($pin){
  73. $this->params['pin'] = $pin;
  74. }
  75. public function getPin(){
  76. return $this->pin;
  77. }
  78. function getInstance(){
  79. return $this->params;
  80. }
  81. }
  82. ?>