修复返回参数命名错误
This commit is contained in:
parent
a0884efa89
commit
8a657398e2
|
|
@ -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"` //系统功能,对应模型系统参数
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue