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

40 lines
726 B
PHP
Raw Permalink 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
/**
* 合单订单列表一个列表最多200
* @author auto create
*/
class OrderGroup
{
/**
* erp系统内的订单id
**/
public $erp_order_id;
/**
* 商品类型, 0:下单货品1:赠品2:其他
**/
public $item_type;
/**
* 淘宝单号可以是交易订单、换货单、补货单、代发单或分销单等,当 order_type=0时order_id = taobao_parent_order_id。
**/
public $order_id;
/**
* order_id的类型0:淘宝交易订单,1: 换货单,2:分销单3:补货单4:代发单
**/
public $order_type;
/**
* 淘宝交易主订单id
**/
public $taobao_parent_order_id;
/**
* 淘宝交易子订单id
**/
public $taobao_sub_order_id;
}
?>