修复返回参数命名错误

This commit is contained in:
junleea 2025-03-31 14:10:24 +08:00
parent a0884efa89
commit 8a657398e2
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ type FunctionModel struct {
Function string `gorm:"column:function"` //功能函数,唯一标识
UserID uint `gorm:"column:user_id"` //用户id
ModelID uint `gorm:"column:model_id"` //模型id
ModelIDs string `gorm:"column:model_ids"` //允许模型id,可多个
ModelIDS string `gorm:"column:model_ids"` //允许模型id,可多个
Info string `gorm:"column:info"` //功能信息,系统功能,对应模型系统参数
//System string `gorm:"column:system"` //系统功能,对应模型系统参数
}