35 lines
345 B
PHP
35 lines
345 B
PHP
<?php
|
|
|
|
/**
|
|
* 系列扩展信息
|
|
* @author auto create
|
|
*/
|
|
class ItemSeriesExtendDO
|
|
{
|
|
|
|
/**
|
|
* 类目id
|
|
**/
|
|
public $cat_id;
|
|
|
|
/**
|
|
* 分组信息
|
|
**/
|
|
public $group_item_list;
|
|
|
|
/**
|
|
* 系列玩法
|
|
**/
|
|
public $mode;
|
|
|
|
/**
|
|
* 系列描述
|
|
**/
|
|
public $series_desc;
|
|
|
|
/**
|
|
* 系列名称
|
|
**/
|
|
public $series_name;
|
|
}
|
|
?>
|