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/custom/ShopfavoritedGetRequest.php

71 lines
1.1 KiB

<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2021-1-5
*/
class ShopfavoritedGetRequest extends SuningRequest{
/**
*
*/
private $custNum;
/**
*
*/
private $mixPin;
/**
*
*/
private $shopId;
public function getCustNum() {
return $this->custNum;
}
public function setCustNum($custNum) {
$this->custNum = $custNum;
$this->apiParams["custNum"] = $custNum;
}
public function getMixPin() {
return $this->mixPin;
}
public function setMixPin($mixPin) {
$this->mixPin = $mixPin;
$this->apiParams["mixPin"] = $mixPin;
}
public function getShopId() {
return $this->shopId;
}
public function setShopId($shopId) {
$this->shopId = $shopId;
$this->apiParams["shopId"] = $shopId;
}
public function getApiMethodName(){
return 'suning.custom.shopfavorited.get';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->shopId, 'shopId');
}
public function getBizName(){
return "getShopfavorited";
}
}
?>