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.
87 lines
1.7 KiB
87 lines
1.7 KiB
8 months ago
|
<?php
|
||
|
/**
|
||
|
* 苏宁开放平台接口 -
|
||
|
*
|
||
|
* @author suning
|
||
|
* @date 2021-5-25
|
||
|
*/
|
||
|
class BusinessorderConfirmRequest extends SuningRequest{
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $auditRemark;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $auditStatus;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $businessId;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $termValidity;
|
||
|
|
||
|
public function getAuditRemark() {
|
||
|
return $this->auditRemark;
|
||
|
}
|
||
|
|
||
|
public function setAuditRemark($auditRemark) {
|
||
|
$this->auditRemark = $auditRemark;
|
||
|
$this->apiParams["auditRemark"] = $auditRemark;
|
||
|
}
|
||
|
|
||
|
public function getAuditStatus() {
|
||
|
return $this->auditStatus;
|
||
|
}
|
||
|
|
||
|
public function setAuditStatus($auditStatus) {
|
||
|
$this->auditStatus = $auditStatus;
|
||
|
$this->apiParams["auditStatus"] = $auditStatus;
|
||
|
}
|
||
|
|
||
|
public function getBusinessId() {
|
||
|
return $this->businessId;
|
||
|
}
|
||
|
|
||
|
public function setBusinessId($businessId) {
|
||
|
$this->businessId = $businessId;
|
||
|
$this->apiParams["businessId"] = $businessId;
|
||
|
}
|
||
|
|
||
|
public function getTermValidity() {
|
||
|
return $this->termValidity;
|
||
|
}
|
||
|
|
||
|
public function setTermValidity($termValidity) {
|
||
|
$this->termValidity = $termValidity;
|
||
|
$this->apiParams["termValidity"] = $termValidity;
|
||
|
}
|
||
|
|
||
|
public function getApiMethodName(){
|
||
|
return 'suning.retailer.businessorder.confirm';
|
||
|
}
|
||
|
|
||
|
public function getApiParams(){
|
||
|
return $this->apiParams;
|
||
|
}
|
||
|
|
||
|
public function check(){
|
||
|
//非空校验
|
||
|
RequestCheckUtil::checkNotNull($this->auditRemark, 'auditRemark');
|
||
|
RequestCheckUtil::checkNotNull($this->auditStatus, 'auditStatus');
|
||
|
RequestCheckUtil::checkNotNull($this->businessId, 'businessId');
|
||
|
}
|
||
|
|
||
|
public function getBizName(){
|
||
|
return "confirmBusinessorder";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|