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

80 lines
1.1 KiB
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 CombineSubItemDO
{
/**
* 苹果商品标
**/
public $apple_cc;
/**
* 成分品套餐原价
**/
public $combine_sub_item_fee;
/**
* 教育优惠原价
**/
public $edu_original_fee;
/**
* 套餐购成分品预计承诺时效(如果为时间格式为yyyy-MM-dd 则为绝对时间为数字则为相对时间比如7天内发货)
**/
public $estcon_time;
/**
* 套餐购是否商品主子成分品
**/
public $ismain;
/**
* 商品数字编号
**/
public $item_id;
/**
* 商品标题
**/
public $item_name;
/**
* 商品数字编号
**/
public $num_iid;
/**
* 原价
**/
public $origin_fee;
/**
* 商家外部编码(可与商家外部系统对接)
**/
public $outer_iid;
/**
* 123
**/
public $outer_sku_id;
/**
* 数量
**/
public $quantity;
/**
* sku_id
**/
public $sku_id;
/**
* SKU标题
**/
public $sku_title;
}
?>