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

25 lines
308 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 ItemCouponSku
{
/**
* 淘宝item和shop的对应关系 k-itemId, v-shopId
**/
public $item_shop_relation;
/**
* 商品的skuCode
**/
public $sku_code;
/**
* 商品名称
**/
public $sku_name;
}
?>