1.加入ai对话框 模块日报功能

This commit is contained in:
2026-03-25 08:41:07 +08:00
parent 6b22839ca1
commit b7b50046d4
16 changed files with 551 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
-- ----------------------------
-- 租户表新增字段租户提示词、Dify 路径
-- 执行前请备份数据
-- Dify 路径支持域名、IP、IP:端口 等格式
-- ----------------------------
ALTER TABLE `system_tenant`
ADD COLUMN `tenant_prompt` varchar(2000) NULL DEFAULT '' COMMENT '租户提示词' AFTER `account_count`,
ADD COLUMN `dify_path` varchar(500) NULL DEFAULT '' COMMENT 'Dify 路径支持域名、IP、IP:端口)' AFTER `tenant_prompt`;