You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/extend/suning-sdk-php/request/netalliance/SelectrecommendcommodityQue...

140 lines
2.3 KiB

<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2021-12-3
*/
class SelectrecommendcommodityQueryRequest extends SuningRequest{
/**
*
*/
private $cityCode;
/**
*
*/
private $couponMark;
/**
*
*/
private $eliteId;
/**
*
*/
private $pageIndex;
/**
*
*/
private $picHeight;
/**
*
*/
private $picWidth;
/**
*
*/
private $selfSupport;
/**
*
*/
private $size;
public function getCityCode() {
return $this->cityCode;
}
public function setCityCode($cityCode) {
$this->cityCode = $cityCode;
$this->apiParams["cityCode"] = $cityCode;
}
public function getCouponMark() {
return $this->couponMark;
}
public function setCouponMark($couponMark) {
$this->couponMark = $couponMark;
$this->apiParams["couponMark"] = $couponMark;
}
public function getEliteId() {
return $this->eliteId;
}
public function setEliteId($eliteId) {
$this->eliteId = $eliteId;
$this->apiParams["eliteId"] = $eliteId;
}
public function getPageIndex() {
return $this->pageIndex;
}
public function setPageIndex($pageIndex) {
$this->pageIndex = $pageIndex;
$this->apiParams["pageIndex"] = $pageIndex;
}
public function getPicHeight() {
return $this->picHeight;
}
public function setPicHeight($picHeight) {
$this->picHeight = $picHeight;
$this->apiParams["picHeight"] = $picHeight;
}
public function getPicWidth() {
return $this->picWidth;
}
public function setPicWidth($picWidth) {
$this->picWidth = $picWidth;
$this->apiParams["picWidth"] = $picWidth;
}
public function getSelfSupport() {
return $this->selfSupport;
}
public function setSelfSupport($selfSupport) {
$this->selfSupport = $selfSupport;
$this->apiParams["selfSupport"] = $selfSupport;
}
public function getSize() {
return $this->size;
}
public function setSize($size) {
$this->size = $size;
$this->apiParams["size"] = $size;
}
public function getApiMethodName(){
return 'suning.netalliance.selectrecommendcommodity.query';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
}
public function getBizName(){
return "querySelectrecommendcommodity";
}
}
?>