## 系统消息表(yf_liuhe_message)
| 字段名 | 数据类型 | 默认值 | 说明 |
| --- | --- | --- | --- |
| id | int(10) | 无 | 主键 |
| type | int(10) | 无 | 消息类型,1:站内消息,2:其它消息 |
| title | varchat(115) | 无 | 消息标题 |
| content | text | 无 | 消息内容 |
| receive_uid | text | 无 | 领取消息的用户id列表 |
| addtime | int(10) | 无 | 操作时间 |
## 用户消息表(yf_liuhe_user_message)
| 字段名 | 数据类型 | 默认值 | 说明 |
| --- | --- | --- | --- |
| id | int(10) | 无 | 主键 |
| type | int(10) | 无 | 消息类型,1:站内消息,2:其它消息 |
| title | varchat(115) | 无 | 消息标题 |
| fromid | int(10) | 0 | 来自的用户id |
| toid | int(10) | 0 | 领取的用户id |
| content | text | 无 | 消息内容 |
| isread | tinyint(2) | 0 | 读取类型(1:已读取,0:未读取) |
| addtime | int(10) | 无 | 操作时间 |
备注:
* 管理员发系统消息时是针对全体会员,只在`yf_liuhe_message`表中插入一条数据,当会员登录或查看消息时,根据`yf_liuhe_message`表中的`receive_uid `把消息同步到`yf_liuhe_user_message`中。
* 管理员可单独给某一些会员发消息,直接插入`yf_liuhe_user_message`表中。