SecretReq.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?php
  2. namespace UnionOpenPromotionSecretGet;
  3. class SecretReq{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.union.open.gateway.api.dto.promotion.secret.SecretReq";
  7. }
  8. private $pin;
  9. public function setPin($pin){
  10. $this->params['pin'] = $pin;
  11. }
  12. public function getPin(){
  13. return $this->pin;
  14. }
  15. private $secretThemeId;
  16. public function setSecretThemeId($secretThemeId){
  17. $this->params['secretThemeId'] = $secretThemeId;
  18. }
  19. public function getSecretThemeId(){
  20. return $this->secretThemeId;
  21. }
  22. private $secretKeyWord;
  23. public function setSecretKeyWord($secretKeyWord){
  24. $this->params['secretKeyWord'] = $secretKeyWord;
  25. }
  26. public function getSecretKeyWord(){
  27. return $this->secretKeyWord;
  28. }
  29. private $tu;
  30. public function setTu($tu){
  31. $this->params['tu'] = $tu;
  32. }
  33. public function getTu(){
  34. return $this->tu;
  35. }
  36. private $tuName;
  37. public function setTuName($tuName){
  38. $this->params['tuName'] = $tuName;
  39. }
  40. public function getTuName(){
  41. return $this->tuName;
  42. }
  43. private $webId;
  44. public function setWebId($webId){
  45. $this->params['webId'] = $webId;
  46. }
  47. public function getWebId(){
  48. return $this->webId;
  49. }
  50. private $effectiveStartTime;
  51. public function setEffectiveStartTime($effectiveStartTime){
  52. $this->params['effectiveStartTime'] = $effectiveStartTime;
  53. }
  54. public function getEffectiveStartTime(){
  55. return $this->effectiveStartTime;
  56. }
  57. private $effectiveEndTime;
  58. public function setEffectiveEndTime($effectiveEndTime){
  59. $this->params['effectiveEndTime'] = $effectiveEndTime;
  60. }
  61. public function getEffectiveEndTime(){
  62. return $this->effectiveEndTime;
  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 $subUnionId;
  72. public function setSubUnionId($subUnionId){
  73. $this->params['subUnionId'] = $subUnionId;
  74. }
  75. public function getSubUnionId(){
  76. return $this->subUnionId;
  77. }
  78. private $promotionType;
  79. public function setPromotionType($promotionType){
  80. $this->params['promotionType'] = $promotionType;
  81. }
  82. public function getPromotionType(){
  83. return $this->promotionType;
  84. }
  85. private $positionId;
  86. public function setPositionId($positionId){
  87. $this->params['positionId'] = $positionId;
  88. }
  89. public function getPositionId(){
  90. return $this->positionId;
  91. }
  92. private $pid;
  93. public function setPid($pid){
  94. $this->params['pid'] = $pid;
  95. }
  96. public function getPid(){
  97. return $this->pid;
  98. }
  99. function getInstance(){
  100. return $this->params;
  101. }
  102. }
  103. ?>