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

35 lines
509 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 TopConsignGoodsRequest
{
/**
* 成分品itemId
**/
public $comp_item_id;
/**
* 成分品skuId
**/
public $comp_sku_id;
/**
* 品类型 0标品/平台赠品1ERP线下赠品、2成分品默认为0
**/
public $item_type;
/**
* 商品数量不传默认为子单上的商品数量支持不传但不能传0或负值
**/
public $num;
/**
* 子订单id
**/
public $sub_tid;
}
?>