修复返回参数命名错误

This commit is contained in:
junleea 2025-03-31 13:46:01 +08:00
parent acc286d00d
commit a0884efa89
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ type FunctionModel struct {
Function string `gorm:"column:function"` //功能函数,唯一标识 Function string `gorm:"column:function"` //功能函数,唯一标识
UserID uint `gorm:"column:user_id"` //用户id UserID uint `gorm:"column:user_id"` //用户id
ModelID uint `gorm:"column:model_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"` //功能信息,系统功能,对应模型系统参数 Info string `gorm:"column:info"` //功能信息,系统功能,对应模型系统参数
//System string `gorm:"column:system"` //系统功能,对应模型系统参数 //System string `gorm:"column:system"` //系统功能,对应模型系统参数
} }