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.
85 lines
1.5 KiB
85 lines
1.5 KiB
<?php
|
|
/**
|
|
* 苏宁开放平台接口 -
|
|
*
|
|
* @author suning
|
|
* @date 2019-7-29
|
|
*/
|
|
class AreamasterdataQueryRequest extends SuningRequest{
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $appId;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $cityCode;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $districtCode;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $provinceCode;
|
|
|
|
public function getAppId() {
|
|
return $this->appId;
|
|
}
|
|
|
|
public function setAppId($appId) {
|
|
$this->appId = $appId;
|
|
$this->apiParams["appId"] = $appId;
|
|
}
|
|
|
|
public function getCityCode() {
|
|
return $this->cityCode;
|
|
}
|
|
|
|
public function setCityCode($cityCode) {
|
|
$this->cityCode = $cityCode;
|
|
$this->apiParams["cityCode"] = $cityCode;
|
|
}
|
|
|
|
public function getDistrictCode() {
|
|
return $this->districtCode;
|
|
}
|
|
|
|
public function setDistrictCode($districtCode) {
|
|
$this->districtCode = $districtCode;
|
|
$this->apiParams["districtCode"] = $districtCode;
|
|
}
|
|
|
|
public function getProvinceCode() {
|
|
return $this->provinceCode;
|
|
}
|
|
|
|
public function setProvinceCode($provinceCode) {
|
|
$this->provinceCode = $provinceCode;
|
|
$this->apiParams["provinceCode"] = $provinceCode;
|
|
}
|
|
|
|
public function getApiMethodName(){
|
|
return 'suning.retailer.areamasterdata.query';
|
|
}
|
|
|
|
public function getApiParams(){
|
|
return $this->apiParams;
|
|
}
|
|
|
|
public function check(){
|
|
//非空校验
|
|
RequestCheckUtil::checkNotNull($this->appId, 'appId');
|
|
}
|
|
|
|
public function getBizName(){
|
|
return "queryAreamasterdata";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|