| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?php
- namespace UnionOpenActivityRecommendQuery;
- class Req{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.activity.recommend.RecommendActivityReq";
- }
-
- private $userId;
-
- public function setUserId($userId){
- $this->params['userId'] = $userId;
- }
- public function getUserId(){
- return $this->userId;
- }
-
- private $userIdType;
-
- public function setUserIdType($userIdType){
- $this->params['userIdType'] = $userIdType;
- }
- public function getUserIdType(){
- return $this->userIdType;
- }
-
- private $orderId;
-
- public function setOrderId($orderId){
- $this->params['orderId'] = $orderId;
- }
- public function getOrderId(){
- return $this->orderId;
- }
-
- private $pid;
-
- public function setPid($pid){
- $this->params['pid'] = $pid;
- }
- public function getPid(){
- return $this->pid;
- }
-
- private $subUnionId;
-
- public function setSubUnionId($subUnionId){
- $this->params['subUnionId'] = $subUnionId;
- }
- public function getSubUnionId(){
- return $this->subUnionId;
- }
-
- private $siteId;
-
- public function setSiteId($siteId){
- $this->params['siteId'] = $siteId;
- }
- public function getSiteId(){
- return $this->siteId;
- }
-
- private $positionId;
-
- public function setPositionId($positionId){
- $this->params['positionId'] = $positionId;
- }
- public function getPositionId(){
- return $this->positionId;
- }
-
- private $needClickUrl;
-
- public function setNeedClickUrl($needClickUrl){
- $this->params['needClickUrl'] = $needClickUrl;
- }
- public function getNeedClickUrl(){
- return $this->needClickUrl;
- }
-
- private $imageWidth;
-
- public function setImageWidth($imageWidth){
- $this->params['imageWidth'] = $imageWidth;
- }
- public function getImageWidth(){
- return $this->imageWidth;
- }
-
- private $imageHeight;
-
- public function setImageHeight($imageHeight){
- $this->params['imageHeight'] = $imageHeight;
- }
- public function getImageHeight(){
- return $this->imageHeight;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|