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

20 lines
358 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
/**
* 子订单发货状态
* @author auto create
*/
class ConsignStatusRequest
{
/**
* 子订单是否部分发货true部分发货false全部发货周期购、分销订单不支持部分发货
**/
public $is_part_consign;
/**
* 子订单id组合品不需要传系统会自动计算
**/
public $sub_tid;
}
?>