Authored by qianjun

帮助分类表说明

## 1.数据库(yhb_operations)
### 1.1 帮助分类(yhb_operations.help_category)
#### sql 脚本
```sql
CREATE TABLE `help_category` (
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`category_name` varchar(50) DEFAULT NULL,
`parent_id` smallint(5) unsigned NOT NULL DEFAULT '0',
`platform` varchar(50) NOT NULL COMMENT 'iphone ios手机\n android 安卓手机 \n ipad ios平板 \n androidpad 安卓平板 \n h5 手机网站 \n web pc网站',
`create_time` int(10) unsigned NOT NULL DEFAULT '0',
`update_time` int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1、正常 2、已删除',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8;
```
#### 说明:增加标识字段status 1 表示正常记录 2 表示已删除记录
\ No newline at end of file
... ...