标签:
关于回复的功能我是参考了别人的设计库表而得到的,以下是数据库表的设计结构,我来简述一下其原理,表结构见下表。
字段名 | 含义 | 其它 |
id | auto_increase | 自增ID |
to_comment_id | 回复的评论id | 默认为0 ,只是回复文章,不回复用户 |
to_user_id | 回复的用户id | |
user_id | 用户的id | |
page_id | 文章篇号 | |
type | 类型 | |
parent_id | 评论的最顶层 | |
is_read | 是否阅读过 | |
content | 评论内容 | |
ua | ua | |
status | 状态 | |
add_time | 评论时间 | |
other | 其它字段 |
标签:
原文地址:http://www.cnblogs.com/hanwei/p/4912116.html