| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <?php
- namespace UnionOpenGoodsSnapshopQuery;
- class SnapShopGoodsReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.goods.snapshop.SnapShopGoodsReq";
- }
-
- private $imageData;
-
- public function setImageData($imageData){
- $this->params['imageData'] = $imageData;
- }
- public function getImageData(){
- return $this->imageData;
- }
-
- private $imageId;
-
- public function setImageId($imageId){
- $this->params['imageId'] = $imageId;
- }
- public function getImageId(){
- return $this->imageId;
- }
-
- private $pageIndex;
-
- public function setPageIndex($pageIndex){
- $this->params['pageIndex'] = $pageIndex;
- }
- public function getPageIndex(){
- return $this->pageIndex;
- }
-
- private $pageSize;
-
- public function setPageSize($pageSize){
- $this->params['pageSize'] = $pageSize;
- }
- public function getPageSize(){
- return $this->pageSize;
- }
-
- private $sortName;
-
- public function setSortName($sortName){
- $this->params['sortName'] = $sortName;
- }
- public function getSortName(){
- return $this->sortName;
- }
-
- private $sort;
-
- public function setSort($sort){
- $this->params['sort'] = $sort;
- }
- public function getSort(){
- return $this->sort;
- }
-
- private $userIdType;
-
- public function setUserIdType($userIdType){
- $this->params['userIdType'] = $userIdType;
- }
- public function getUserIdType(){
- return $this->userIdType;
- }
-
- private $userId;
-
- public function setUserId($userId){
- $this->params['userId'] = $userId;
- }
- public function getUserId(){
- return $this->userId;
- }
-
- private $channelId;
-
- public function setChannelId($channelId){
- $this->params['channelId'] = $channelId;
- }
- public function getChannelId(){
- return $this->channelId;
- }
-
- private $ip;
-
- public function setIp($ip){
- $this->params['ip'] = $ip;
- }
- public function getIp(){
- return $this->ip;
- }
-
- private $provinceId;
-
- public function setProvinceId($provinceId){
- $this->params['provinceId'] = $provinceId;
- }
- public function getProvinceId(){
- return $this->provinceId;
- }
-
- private $cityId;
-
- public function setCityId($cityId){
- $this->params['cityId'] = $cityId;
- }
- public function getCityId(){
- return $this->cityId;
- }
-
- private $countryId;
-
- public function setCountryId($countryId){
- $this->params['countryId'] = $countryId;
- }
- public function getCountryId(){
- return $this->countryId;
- }
-
- private $townId;
-
- public function setTownId($townId){
- $this->params['townId'] = $townId;
- }
- public function getTownId(){
- return $this->townId;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|