ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
#### calf_replies | 字段名 | 类型 | 备注 | | --- | --- | --- | | id | int | 回贴id | | uid | int | 回帖人的uid | | puid | int | 被回帖人的uid | | reply_text | text | 回帖内容 | | create_time | int | 回帖时间 | | top | int | 是否置顶 1为置顶 默认0 | | thumb_cnt | int | 点赞数 | | reid | int | 关联帖子id | | change_time | int | 修改时间 | ~~~ -- ---------------------------- -- Table structure for `calf_replies` -- ---------------------------- DROP TABLE IF EXISTS `calf_replies`; CREATE TABLE `calf_replies` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '回贴id', `uid` int(11) DEFAULT NULL COMMENT '回帖人的uid', `puid` int(11) DEFAULT NULL COMMENT '被回帖人的uid', `reply_text` text COMMENT '回帖内容', `create_time` int(11) DEFAULT NULL COMMENT '回帖时间', `top` int(1) DEFAULT '0' COMMENT '是否置顶 1为置顶 默认0 ', `thumb_cnt` int(255) NOT NULL DEFAULT '0' COMMENT '点赞数', `reid` int(11) DEFAULT NULL, `change_time` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `uid` (`uid`) USING BTREE, KEY `puid` (`puid`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; ~~~