refactor: remove remark field from AIAgent and related components

This commit is contained in:
mlogclub
2026-04-18 13:03:59 +08:00
parent 1a657f2dfa
commit 797bee65f9
8 changed files with 0 additions and 22 deletions
-1
View File
@@ -515,7 +515,6 @@ type AIAgent struct {
AllowedMCPTools string `gorm:"type:text"` // AllowedMCPTools 为允许 direct tool 路由的 MCP 工具白名单配置JSON。
AllowedGraphTools string `gorm:"type:text"` // AllowedGraphTools 为允许 Graph Tool 的白名单配置JSON。
SortNo int `gorm:"type:int;not null;default:0;index"` // SortNo 为后台展示排序号。
Remark string `gorm:"type:text"` // Remark 为备注。
AuditFields
}