@@ -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
|
||||
|
||||
Reference in New Issue
Block a user