修复配置文件中引号格式并禁用微信自动配置
Some checks failed
aagro-ui-admin CI / build (14.x) (push) Has been cancelled
aagro-ui-admin CI / build (16.x) (push) Has been cancelled
Java CI with Maven / build (11) (push) Has been cancelled
Java CI with Maven / build (17) (push) Has been cancelled
Java CI with Maven / build (8) (push) Has been cancelled

This commit is contained in:
2025-10-04 18:25:38 +08:00
parent 593dfe9cf8
commit f8822370ff
2 changed files with 274 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ mybatis-plus:
map-underscore-to-camel-case: true # 虽然默认为 true ,但是还是显示去指定下。
global-config:
db-config:
id-type: NONE # 智能模式,基于 IdTypeEnvironmentPostProcessor + 数据源的类型,自动适配成 AUTO、INPUT 模式。
id-type: NONE # "智能"模式,基于 IdTypeEnvironmentPostProcessor + 数据源的类型,自动适配成 AUTO、INPUT 模式。
# id-type: AUTO # 自增 ID适合 MySQL 等直接自增的数据库
# id-type: INPUT # 用户输入 ID适合 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库
# id-type: ASSIGN_ID # 分配 ID默认使用雪花算法。注意Oracle、PostgreSQL、Kingbase、DB2、H2 数据库时,需要去除实体类上的 @KeySequence 注解
@@ -195,7 +195,7 @@ spring:
options:
model: deepseek-chat
model:
rerank: false # 是否开启通义千问的 Rerank 模型,填写 dashscope 开启
rerank: false # 是否开启"通义千问"的 Rerank 模型,填写 dashscope 开启
mcp:
server:
enabled: false
@@ -348,4 +348,15 @@ aagro:
message-bus:
type: redis # 消息总线的类型
# 禁用微信相关自动配置
wx:
mp:
config-storage:
type: memory
key-prefix: wx
app-id: xxx
secret: xxx
token: xxx
aes-key: xxx
debug: false