64 lines
989 B
PHP
64 lines
989 B
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* TOP API: taobao.qimen.deliveryorder.batchcreate request
|
||
|
*
|
||
|
* @author auto create
|
||
|
* @since 1.0, 2023.05.09
|
||
|
*/
|
||
|
class DeliveryorderBatchcreateRequest
|
||
|
{
|
||
|
/**
|
||
|
* 扩展属性
|
||
|
**/
|
||
|
private $extendProps;
|
||
|
|
||
|
/**
|
||
|
* 订单信息
|
||
|
**/
|
||
|
private $orders;
|
||
|
|
||
|
private $apiParas = array();
|
||
|
|
||
|
public function setExtendProps($extendProps)
|
||
|
{
|
||
|
$this->extendProps = $extendProps;
|
||
|
$this->apiParas["extendProps"] = $extendProps;
|
||
|
}
|
||
|
|
||
|
public function getExtendProps()
|
||
|
{
|
||
|
return $this->extendProps;
|
||
|
}
|
||
|
|
||
|
public function setOrders($orders)
|
||
|
{
|
||
|
$this->orders = $orders;
|
||
|
$this->apiParas["orders"] = $orders;
|
||
|
}
|
||
|
|
||
|
public function getOrders()
|
||
|
{
|
||
|
return $this->orders;
|
||
|
}
|
||
|
|
||
|
public function getApiMethodName()
|
||
|
{
|
||
|
return "taobao.qimen.deliveryorder.batchcreate";
|
||
|
}
|
||
|
|
||
|
public function getApiParas()
|
||
|
{
|
||
|
return $this->apiParas;
|
||
|
}
|
||
|
|
||
|
public function check()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function putOtherTextParam($key, $value) {
|
||
|
$this->apiParas[$key] = $value;
|
||
|
$this->$key = $value;
|
||
|
}
|
||
|
}
|