2024-09-29 15:43:18 +08:00

45 lines
659 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 Data
{
/**
* 买N赠1的N
**/
public $buy_num;
/**
* 赠品的skuCode如果和主商品的skuCode相同则为买A赠A如果不同则为买A赠B
**/
public $gift_sku_code;
/**
* 赠品的名称
**/
public $gift_sku_name;
/**
* 淘宝item和shop的对应关系 k-itemId, v-shopId
**/
public $item_shop_relation;
/**
* 通用限购信息,-1为不限制默认为不限制
**/
public $limit_info;
/**
* 主商品的skuCode
**/
public $sku_code;
/**
* 主商品名称
**/
public $sku_name;
}
?>