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.
409 lines
7.3 KiB
409 lines
7.3 KiB
<?php
|
|
/**
|
|
* 苏宁开放平台接口 -
|
|
*
|
|
* @author suning
|
|
* @date 2022-10-13
|
|
*/
|
|
class OrderAddRequest extends SuningRequest{
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $address;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $amount;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $cityId;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $companyCustNo;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $countyId;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $email;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $invoiceContent;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $invoiceState;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $invoiceTitle;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $invoiceType;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $mobile;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $orderType;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $payment;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $provinceId;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $receiverName;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $remark;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $servFee;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $sku;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $taxNo;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $telephone;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $townId;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $tradeNo;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $zip;
|
|
|
|
public function getAddress() {
|
|
return $this->address;
|
|
}
|
|
|
|
public function setAddress($address) {
|
|
$this->address = $address;
|
|
$this->apiParams["address"] = $address;
|
|
}
|
|
|
|
public function getAmount() {
|
|
return $this->amount;
|
|
}
|
|
|
|
public function setAmount($amount) {
|
|
$this->amount = $amount;
|
|
$this->apiParams["amount"] = $amount;
|
|
}
|
|
|
|
public function getCityId() {
|
|
return $this->cityId;
|
|
}
|
|
|
|
public function setCityId($cityId) {
|
|
$this->cityId = $cityId;
|
|
$this->apiParams["cityId"] = $cityId;
|
|
}
|
|
|
|
public function getCompanyCustNo() {
|
|
return $this->companyCustNo;
|
|
}
|
|
|
|
public function setCompanyCustNo($companyCustNo) {
|
|
$this->companyCustNo = $companyCustNo;
|
|
$this->apiParams["companyCustNo"] = $companyCustNo;
|
|
}
|
|
|
|
public function getCountyId() {
|
|
return $this->countyId;
|
|
}
|
|
|
|
public function setCountyId($countyId) {
|
|
$this->countyId = $countyId;
|
|
$this->apiParams["countyId"] = $countyId;
|
|
}
|
|
|
|
public function getEmail() {
|
|
return $this->email;
|
|
}
|
|
|
|
public function setEmail($email) {
|
|
$this->email = $email;
|
|
$this->apiParams["email"] = $email;
|
|
}
|
|
|
|
public function getInvoiceContent() {
|
|
return $this->invoiceContent;
|
|
}
|
|
|
|
public function setInvoiceContent($invoiceContent) {
|
|
$this->invoiceContent = $invoiceContent;
|
|
$this->apiParams["invoiceContent"] = $invoiceContent;
|
|
}
|
|
|
|
public function getInvoiceState() {
|
|
return $this->invoiceState;
|
|
}
|
|
|
|
public function setInvoiceState($invoiceState) {
|
|
$this->invoiceState = $invoiceState;
|
|
$this->apiParams["invoiceState"] = $invoiceState;
|
|
}
|
|
|
|
public function getInvoiceTitle() {
|
|
return $this->invoiceTitle;
|
|
}
|
|
|
|
public function setInvoiceTitle($invoiceTitle) {
|
|
$this->invoiceTitle = $invoiceTitle;
|
|
$this->apiParams["invoiceTitle"] = $invoiceTitle;
|
|
}
|
|
|
|
public function getInvoiceType() {
|
|
return $this->invoiceType;
|
|
}
|
|
|
|
public function setInvoiceType($invoiceType) {
|
|
$this->invoiceType = $invoiceType;
|
|
$this->apiParams["invoiceType"] = $invoiceType;
|
|
}
|
|
|
|
public function getMobile() {
|
|
return $this->mobile;
|
|
}
|
|
|
|
public function setMobile($mobile) {
|
|
$this->mobile = $mobile;
|
|
$this->apiParams["mobile"] = $mobile;
|
|
}
|
|
|
|
public function getOrderType() {
|
|
return $this->orderType;
|
|
}
|
|
|
|
public function setOrderType($orderType) {
|
|
$this->orderType = $orderType;
|
|
$this->apiParams["orderType"] = $orderType;
|
|
}
|
|
|
|
public function getPayment() {
|
|
return $this->payment;
|
|
}
|
|
|
|
public function setPayment($payment) {
|
|
$this->payment = $payment;
|
|
$this->apiParams["payment"] = $payment;
|
|
}
|
|
|
|
public function getProvinceId() {
|
|
return $this->provinceId;
|
|
}
|
|
|
|
public function setProvinceId($provinceId) {
|
|
$this->provinceId = $provinceId;
|
|
$this->apiParams["provinceId"] = $provinceId;
|
|
}
|
|
|
|
public function getReceiverName() {
|
|
return $this->receiverName;
|
|
}
|
|
|
|
public function setReceiverName($receiverName) {
|
|
$this->receiverName = $receiverName;
|
|
$this->apiParams["receiverName"] = $receiverName;
|
|
}
|
|
|
|
public function getRemark() {
|
|
return $this->remark;
|
|
}
|
|
|
|
public function setRemark($remark) {
|
|
$this->remark = $remark;
|
|
$this->apiParams["remark"] = $remark;
|
|
}
|
|
|
|
public function getServFee() {
|
|
return $this->servFee;
|
|
}
|
|
|
|
public function setServFee($servFee) {
|
|
$this->servFee = $servFee;
|
|
$this->apiParams["servFee"] = $servFee;
|
|
}
|
|
|
|
public function getSku() {
|
|
return $this->sku;
|
|
}
|
|
|
|
public function setSku($sku) {
|
|
$this->sku = $sku;
|
|
$arr = array();
|
|
foreach ($sku as $temp){
|
|
array_push($arr,$temp->getApiParams());
|
|
}
|
|
$this->apiParams["sku"] = $arr;
|
|
}
|
|
|
|
public function getTaxNo() {
|
|
return $this->taxNo;
|
|
}
|
|
|
|
public function setTaxNo($taxNo) {
|
|
$this->taxNo = $taxNo;
|
|
$this->apiParams["taxNo"] = $taxNo;
|
|
}
|
|
|
|
public function getTelephone() {
|
|
return $this->telephone;
|
|
}
|
|
|
|
public function setTelephone($telephone) {
|
|
$this->telephone = $telephone;
|
|
$this->apiParams["telephone"] = $telephone;
|
|
}
|
|
|
|
public function getTownId() {
|
|
return $this->townId;
|
|
}
|
|
|
|
public function setTownId($townId) {
|
|
$this->townId = $townId;
|
|
$this->apiParams["townId"] = $townId;
|
|
}
|
|
|
|
public function getTradeNo() {
|
|
return $this->tradeNo;
|
|
}
|
|
|
|
public function setTradeNo($tradeNo) {
|
|
$this->tradeNo = $tradeNo;
|
|
$this->apiParams["tradeNo"] = $tradeNo;
|
|
}
|
|
|
|
public function getZip() {
|
|
return $this->zip;
|
|
}
|
|
|
|
public function setZip($zip) {
|
|
$this->zip = $zip;
|
|
$this->apiParams["zip"] = $zip;
|
|
}
|
|
|
|
public function getApiMethodName(){
|
|
return 'suning.govbus.order.add';
|
|
}
|
|
|
|
public function getApiParams(){
|
|
return $this->apiParams;
|
|
}
|
|
|
|
public function check(){
|
|
//非空校验
|
|
RequestCheckUtil::checkNotNull($this->address, 'address');
|
|
RequestCheckUtil::checkNotNull($this->amount, 'amount');
|
|
RequestCheckUtil::checkNotNull($this->cityId, 'cityId');
|
|
RequestCheckUtil::checkNotNull($this->countyId, 'countyId');
|
|
RequestCheckUtil::checkNotNull($this->invoiceState, 'invoiceState');
|
|
RequestCheckUtil::checkNotNull($this->mobile, 'mobile');
|
|
RequestCheckUtil::checkNotNull($this->orderType, 'orderType');
|
|
RequestCheckUtil::checkNotNull($this->payment, 'payment');
|
|
RequestCheckUtil::checkNotNull($this->provinceId, 'provinceId');
|
|
RequestCheckUtil::checkNotNull($this->receiverName, 'receiverName');
|
|
RequestCheckUtil::checkNotNull($this->servFee, 'servFee');
|
|
RequestCheckUtil::checkNotNull($this->tradeNo, 'tradeNo');
|
|
}
|
|
|
|
public function getBizName(){
|
|
return "addOrder";
|
|
}
|
|
|
|
}
|
|
|
|
class Sku {
|
|
|
|
private $apiParams = array();
|
|
|
|
private $num;
|
|
|
|
private $skuId;
|
|
|
|
private $unitPrice;
|
|
|
|
public function getNum() {
|
|
return $this->num;
|
|
}
|
|
|
|
public function setNum($num) {
|
|
$this->num = $num;
|
|
$this->apiParams["num"] = $num;
|
|
}
|
|
|
|
public function getSkuId() {
|
|
return $this->skuId;
|
|
}
|
|
|
|
public function setSkuId($skuId) {
|
|
$this->skuId = $skuId;
|
|
$this->apiParams["skuId"] = $skuId;
|
|
}
|
|
|
|
public function getUnitPrice() {
|
|
return $this->unitPrice;
|
|
}
|
|
|
|
public function setUnitPrice($unitPrice) {
|
|
$this->unitPrice = $unitPrice;
|
|
$this->apiParams["unitPrice"] = $unitPrice;
|
|
}
|
|
|
|
public function getApiParams(){
|
|
return $this->apiParams;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|