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/online/CmmdtylistpriceQueryRequest...

111 lines
1.9 KiB

<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2019-11-15
*/
class CmmdtylistpriceQueryRequest extends SuningRequest{
/**
*
*/
private $chanId;
/**
*
*/
private $city;
/**
*
*/
private $cmmdtyInfo;
/**
*
*/
private $province;
public function getChanId() {
return $this->chanId;
}
public function setChanId($chanId) {
$this->chanId = $chanId;
$this->apiParams["chanId"] = $chanId;
}
public function getCity() {
return $this->city;
}
public function setCity($city) {
$this->city = $city;
$this->apiParams["city"] = $city;
}
public function getCmmdtyInfo() {
return $this->cmmdtyInfo;
}
public function setCmmdtyInfo($cmmdtyInfo) {
$this->cmmdtyInfo = $cmmdtyInfo;
$arr = array();
foreach ($cmmdtyInfo as $temp){
array_push($arr,$temp->getApiParams());
}
$this->apiParams["cmmdtyInfo"] = $arr;
}
public function getProvince() {
return $this->province;
}
public function setProvince($province) {
$this->province = $province;
$this->apiParams["province"] = $province;
}
public function getApiMethodName(){
return 'suning.online.cmmdtylistprice.query';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->chanId, 'chanId');
RequestCheckUtil::checkNotNull($this->province, 'province');
}
public function getBizName(){
return "queryCmmdtylistprice";
}
}
class CmmdtyInfo {
private $apiParams = array();
private $cmmdtyCode;
public function getCmmdtyCode() {
return $this->cmmdtyCode;
}
public function setCmmdtyCode($cmmdtyCode) {
$this->cmmdtyCode = $cmmdtyCode;
$this->apiParams["cmmdtyCode"] = $cmmdtyCode;
}
public function getApiParams(){
return $this->apiParams;
}
}
?>