Authored by qianjun

帮助内容

## 1.数据库(yhb_operations)
### 1.1 帮助内容(yhb_operations.help_content)
#### sql 脚本
```sql
CREATE TABLE `help_content` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`category_id` smallint(5) unsigned NOT NULL DEFAULT '0',
`content` text,
`platform` varchar(50) DEFAULT NULL,
`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=45 DEFAULT CHARSET=utf8;
```
#### 说明:增加标识字段status 1 表示正常记录 2 表示已删除记录
\ No newline at end of file
... ...