From a0884efa890aadab01fbf3848a54fa26bbc84771 Mon Sep 17 00:00:00 2001 From: junleea <354425203@qq.com> Date: Mon, 31 Mar 2025 13:46:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=BF=94=E5=9B=9E=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E5=91=BD=E5=90=8D=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dao/model.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dao/model.go b/dao/model.go index 9a766fb..1d6835f 100644 --- a/dao/model.go +++ b/dao/model.go @@ -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"` //系统功能,对应模型系统参数 }