REAPI/extend/sdk/taobao/top/domain/OrderInfoDto.php
2024-09-29 15:43:18 +08:00

30 lines
764 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 订单信息
* @author auto create
*/
class OrderInfoDto
{
/**
* <a href="http://open.taobao.com/doc2/detail.htm?spm=a219a.7629140.0.0.8cf9Nj&treeId=17&articleId=105085&docType=1#2">订单渠道平台编码</a>
**/
public $order_channels_type;
/**
* 外部电商平台交易单号集合非必填数量限制100
**/
public $out_trade_order_list;
/**
* 外部电商平台交易子单号集合非必填数量限制100
**/
public $out_trade_sub_order_list;
/**
* 订单号,数量限制100订单号只限传入数字、字母、下划线和中划线为避免出现冲突请按电商平台真实订单号传入请避免使用同个订单号重复取号
**/
public $trade_order_list;
}
?>