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/HoistinglinkQueryRequest.php

141 lines
2.4 KiB

<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2021-5-26
*/
class HoistinglinkQueryRequest extends SuningRequest{
/**
*
*/
private $adBookId;
/**
*
*/
private $backurl;
/**
*
*/
private $goodsCode;
/**
*
*/
private $mertCode;
/**
*
*/
private $subUser;
/**
*
*/
private $storeCode;
/**
*
*/
private $landingPage;
/**
*
*/
private $unionType;
public function getAdBookId() {
return $this->adBookId;
}
public function setAdBookId($adBookId) {
$this->adBookId = $adBookId;
$this->apiParams["adBookId"] = $adBookId;
}
public function getBackurl() {
return $this->backurl;
}
public function setBackurl($backurl) {
$this->backurl = $backurl;
$this->apiParams["backurl"] = $backurl;
}
public function getGoodsCode() {
return $this->goodsCode;
}
public function setGoodsCode($goodsCode) {
$this->goodsCode = $goodsCode;
$this->apiParams["goodsCode"] = $goodsCode;
}
public function getMertCode() {
return $this->mertCode;
}
public function setMertCode($mertCode) {
$this->mertCode = $mertCode;
$this->apiParams["mertCode"] = $mertCode;
}
public function getSubUser() {
return $this->subUser;
}
public function setSubUser($subUser) {
$this->subUser = $subUser;
$this->apiParams["subUser"] = $subUser;
}
public function getStoreCode() {
return $this->storeCode;
}
public function setStoreCode($storeCode) {
$this->storeCode = $storeCode;
$this->apiParams["storeCode"] = $storeCode;
}
public function getLandingPage() {
return $this->landingPage;
}
public function setLandingPage($landingPage) {
$this->landingPage = $landingPage;
$this->apiParams["landingPage"] = $landingPage;
}
public function getUnionType() {
return $this->unionType;
}
public function setUnionType($unionType) {
$this->unionType = $unionType;
$this->apiParams["unionType"] = $unionType;
}
public function getApiMethodName(){
return 'suning.netalliance.hoistinglink.query';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->adBookId, 'adBookId');
}
public function getBizName(){
return "queryHoistinglink";
}
}
?>