25 lines
348 B
PHP
25 lines
348 B
PHP
<?php
|
||
|
||
/**
|
||
* 里面有3个数组:Brand[]品牌列表,ItemCat[] 类目列表XinpinItemCat[] 针对于C卖家新品类目列表
|
||
* @author auto create
|
||
*/
|
||
class SellerAuthorize
|
||
{
|
||
|
||
/**
|
||
* 品牌
|
||
**/
|
||
public $brands;
|
||
|
||
/**
|
||
* 商品类目结构
|
||
**/
|
||
public $item_cats;
|
||
|
||
/**
|
||
* 商品类目结构
|
||
**/
|
||
public $xinpin_item_cats;
|
||
}
|
||
?>
|