From 7a3f0ca7543d0de426aaec336d0bd655f47a8702 Mon Sep 17 00:00:00 2001 From: SliverHorn <45428434+SliverHorn@users.noreply.github.com> Date: Sun, 4 Jul 2021 16:01:20 +0800 Subject: [PATCH] Update sys_api.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改文件 - server/model/sys_api.go 修复问题 - gorm tag 编写错误,使用分号进行分割,而不是写两个gorm tag --- server/model/sys_api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/model/sys_api.go b/server/model/sys_api.go index 20d9b657..03fbeba0 100644 --- a/server/model/sys_api.go +++ b/server/model/sys_api.go @@ -9,5 +9,5 @@ type SysApi struct { Path string `json:"path" gorm:"comment:api路径"` // api路径 Description string `json:"description" gorm:"comment:api中文描述"` // api中文描述 ApiGroup string `json:"apiGroup" gorm:"comment:api组"` // api组 - Method string `json:"method" gorm:"default:POST" gorm:"comment:方法"` // 方法:创建POST(默认)|查看GET|更新PUT|删除DELETE + Method string `json:"method" gorm:"default:POST;comment:方法"` // 方法:创建POST(默认)|查看GET|更新PUT|删除DELETE }