first commit

This commit is contained in:
wubaoyong
2025-12-29 12:56:55 +08:00
commit fbeb74f0ac
47 changed files with 5026 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
客户支持:
- 10000381
功能迭代:
- 智能应答开发90%
- 修复消息聚合的bug
- 排查三方渠道不使用partition key的问题
```sql
CREATE TABLE `ai_intelligence_reply` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '素材ID',
`ent_id` int(11) NOT NULL DEFAULT '0' COMMENT '企业ID',
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '参考知识名称',
`match_source` json not null comment '匹配渠道列表',
`content_item` json NOT NULL COMMENT '内容列表',
`description` text NOT NULL COMMENT '描述',
`match_type` varchar(255) NOT NULL COMMENT '匹配类型',
`match_content` varchar(255) NOT NULL COMMENT '匹配内容',
`advice_reply` varchar(255) NOT NULL COMMENT '补充回复',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
PRIMARY KEY (`id`),
KEY `idx_ent_id` (`ent_id`) COMMENT '企业ID索引'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='AI智能应答'
;
```