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.
115 lines
2.2 KiB
115 lines
2.2 KiB
<?php
|
|
/**
|
|
* 苏宁开放平台接口 -
|
|
*
|
|
* @author suning
|
|
* @date 2021-8-24
|
|
*/
|
|
class DisagreerejectedModifyRequest extends SuningRequest{
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $fileName;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $notReason;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $omsOrderItemNo;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $picProof;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $rejectReasonCode;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $supplierCode;
|
|
|
|
public function getFileName() {
|
|
return $this->fileName;
|
|
}
|
|
|
|
public function setFileName($fileName) {
|
|
$this->fileName = $fileName;
|
|
$this->apiParams["fileName"] = $fileName;
|
|
}
|
|
|
|
public function getNotReason() {
|
|
return $this->notReason;
|
|
}
|
|
|
|
public function setNotReason($notReason) {
|
|
$this->notReason = $notReason;
|
|
$this->apiParams["notReason"] = $notReason;
|
|
}
|
|
|
|
public function getOmsOrderItemNo() {
|
|
return $this->omsOrderItemNo;
|
|
}
|
|
|
|
public function setOmsOrderItemNo($omsOrderItemNo) {
|
|
$this->omsOrderItemNo = $omsOrderItemNo;
|
|
$this->apiParams["omsOrderItemNo"] = $omsOrderItemNo;
|
|
}
|
|
|
|
public function getPicProof() {
|
|
return $this->picProof;
|
|
}
|
|
|
|
public function setPicProof($picProof) {
|
|
$this->picProof = $picProof;
|
|
$this->apiParams["picProof"] = $picProof;
|
|
}
|
|
|
|
public function getRejectReasonCode() {
|
|
return $this->rejectReasonCode;
|
|
}
|
|
|
|
public function setRejectReasonCode($rejectReasonCode) {
|
|
$this->rejectReasonCode = $rejectReasonCode;
|
|
$this->apiParams["rejectReasonCode"] = $rejectReasonCode;
|
|
}
|
|
|
|
public function getSupplierCode() {
|
|
return $this->supplierCode;
|
|
}
|
|
|
|
public function setSupplierCode($supplierCode) {
|
|
$this->supplierCode = $supplierCode;
|
|
$this->apiParams["supplierCode"] = $supplierCode;
|
|
}
|
|
|
|
public function getApiMethodName(){
|
|
return 'suning.selfmarket.disagreerejected.modify';
|
|
}
|
|
|
|
public function getApiParams(){
|
|
return $this->apiParams;
|
|
}
|
|
|
|
public function check(){
|
|
//非空校验
|
|
RequestCheckUtil::checkNotNull($this->notReason, 'notReason');
|
|
RequestCheckUtil::checkNotNull($this->omsOrderItemNo, 'omsOrderItemNo');
|
|
RequestCheckUtil::checkNotNull($this->supplierCode, 'supplierCode');
|
|
}
|
|
|
|
public function getBizName(){
|
|
return "modifyDisagreerejected";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|