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

50 lines
881 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 SellerCat
{
/**
* 卖家自定义类目编号
**/
public $cid;
/**
* 创建时间。格式yyyy-MM-dd HH:mm:ss
**/
public $created;
/**
* 修改时间。格式yyyy-MM-dd HH:mm:ss
**/
public $modified;
/**
* 卖家自定义类目名称
**/
public $name;
/**
* 父类目编号值等于0表示此类目为店铺下的一级类目值不等于0表示此类目有父类目
**/
public $parent_cid;
/**
* 链接图片地址
**/
public $pic_url;
/**
* 该类目在页面上的排序位置
**/
public $sort_order;
/**
* 店铺类目类型可选值manual_type手动分类new_type新品上价 tree_type二三级类目树 property_type属性叶子类目树 brand_type品牌推广
**/
public $type;
}
?>