💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
#### calf_modules | 字段名 | 类型 | 备注 | | --- | --- | --- | | mid | int | 插件id | | name | varchar | 插件名字 | | author| varchar | 插件作者 | | 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; ~~~