Files
obsidian-valut-mq/美洽AI/日报 20251027.md
2025-12-29 12:56:55 +08:00

25 lines
1.1 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
客户支持:
- 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智能应答'
;
```