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/selfmarket/DeliveryvoucherAddRequest.php

97 lines
1.7 KiB

<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2022-12-22
*/
class DeliveryvoucherAddRequest extends SuningRequest{
/**
*
*/
private $imgList;
/**
*
*/
private $omsOrderItemNo;
/**
*
*/
private $supplierCode;
public function getImgList() {
return $this->imgList;
}
public function setImgList($imgList) {
$this->imgList = $imgList;
$arr = array();
foreach ($imgList as $temp){
array_push($arr,$temp->getApiParams());
}
$this->apiParams["imgList"] = $arr;
}
public function getOmsOrderItemNo() {
return $this->omsOrderItemNo;
}
public function setOmsOrderItemNo($omsOrderItemNo) {
$this->omsOrderItemNo = $omsOrderItemNo;
$this->apiParams["omsOrderItemNo"] = $omsOrderItemNo;
}
public function getSupplierCode() {
return $this->supplierCode;
}
public function setSupplierCode($supplierCode) {
$this->supplierCode = $supplierCode;
$this->apiParams["supplierCode"] = $supplierCode;
}
public function getApiMethodName(){
return 'suning.selfmarket.deliveryvoucher.add';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->omsOrderItemNo, 'omsOrderItemNo');
RequestCheckUtil::checkNotNull($this->supplierCode, 'supplierCode');
}
public function getBizName(){
return "addDeliveryvoucher";
}
}
class ImgList {
private $apiParams = array();
private $img;
public function getImg() {
return $this->img;
}
public function setImg($img) {
$this->img = $img;
$this->apiParams["img"] = $img;
}
public function getApiParams(){
return $this->apiParams;
}
}
?>