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

25 lines
393 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
/**
* 返回宝贝模板对象。包含模板id模板name还有模板的类别0表示外店1表示内店
* @author auto create
*/
class ItemTemplate
{
/**
* 用于区分宝贝模板属于内店和外店
**/
public $shop_type;
/**
* 宝贝模板的id
**/
public $template_id;
/**
* 宝贝详情模板的名称
**/
public $template_name;
}
?>