v3.5.3版本更新2
CI / verify (pull_request) Has been cancelled

This commit is contained in:
2026-08-20 20:09:05 +08:00
parent fc2e5b65de
commit 26334ed072
26 changed files with 1238 additions and 117 deletions
+13
View File
@@ -504,6 +504,19 @@ model WecomMessagePush {
@@map("wecom_message_push")
}
/// 企微业务通知文案模板(v3.5.3 · 按事件全站一份,HQ 可编辑)
model WecomPushTemplate {
id BigInt @id @default(autoincrement()) @db.UnsignedBigInt
eventKey String @unique @map("event_key") @db.VarChar(64)
title String @db.VarChar(128)
body String @db.Text
handleLabel String @default("去处理") @map("handle_label") @db.VarChar(32)
createdAt DateTime @default(now()) @map("created_at") @db.DateTime(3)
updatedAt DateTime @updatedAt @map("updated_at") @db.DateTime(3)
@@map("wecom_push_template")
}
/// HQ 语言模型 API 配置(非超管仅可见/可开关自己创建的)
model LlmApiConfig {
id BigInt @id @default(autoincrement()) @db.UnsignedBigInt