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.
72 lines
1.3 KiB
72 lines
1.3 KiB
8 months ago
|
<?php
|
||
|
/**
|
||
|
* 苏宁开放平台接口 -
|
||
|
*
|
||
|
* @author suning
|
||
|
* @date 2023-7-21
|
||
|
*/
|
||
|
class CardexamineModifyRequest extends SuningRequest{
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $examineCode;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $omsOrderItemNo;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $result;
|
||
|
|
||
|
public function getExamineCode() {
|
||
|
return $this->examineCode;
|
||
|
}
|
||
|
|
||
|
public function setExamineCode($examineCode) {
|
||
|
$this->examineCode = $examineCode;
|
||
|
$this->apiParams["examineCode"] = $examineCode;
|
||
|
}
|
||
|
|
||
|
public function getOmsOrderItemNo() {
|
||
|
return $this->omsOrderItemNo;
|
||
|
}
|
||
|
|
||
|
public function setOmsOrderItemNo($omsOrderItemNo) {
|
||
|
$this->omsOrderItemNo = $omsOrderItemNo;
|
||
|
$this->apiParams["omsOrderItemNo"] = $omsOrderItemNo;
|
||
|
}
|
||
|
|
||
|
public function getResult() {
|
||
|
return $this->result;
|
||
|
}
|
||
|
|
||
|
public function setResult($result) {
|
||
|
$this->result = $result;
|
||
|
$this->apiParams["result"] = $result;
|
||
|
}
|
||
|
|
||
|
public function getApiMethodName(){
|
||
|
return 'suning.selfmarket.cardexamine.modify';
|
||
|
}
|
||
|
|
||
|
public function getApiParams(){
|
||
|
return $this->apiParams;
|
||
|
}
|
||
|
|
||
|
public function check(){
|
||
|
//非空校验
|
||
|
RequestCheckUtil::checkNotNull($this->omsOrderItemNo, 'omsOrderItemNo');
|
||
|
RequestCheckUtil::checkNotNull($this->result, 'result');
|
||
|
}
|
||
|
|
||
|
public function getBizName(){
|
||
|
return "modifyCardexamine";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|