From 712ef81c6b8813a498a66cf61ffcd37e5c502c8c Mon Sep 17 00:00:00 2001 From: sunty <1172534965@qq.com> Date: 星期五, 01 十一月 2019 13:45:30 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- controllers/dictionary.go | 17 +++++++++-------- 1 files changed, 9 insertions(+), 8 deletions(-) diff --git a/controllers/dictionary.go b/controllers/dictionary.go index 9794cbe..a71ecce 100644 --- a/controllers/dictionary.go +++ b/controllers/dictionary.go @@ -2,15 +2,15 @@ import ( "basic.com/dbapi.git" + "github.com/gin-gonic/gin" "webserver/extend/code" "webserver/extend/util" - "github.com/gin-gonic/gin" ) type DictionaryController struct { - } +// @Security ApiKeyAuth // @Summary 鏍规嵁绫诲瀷鏌ユ壘瀛楀吀 // @Description 鏍规嵁绫诲瀷鏌ユ壘瀛楀吀 // @Produce json @@ -23,12 +23,13 @@ var api dbapi.DicApi flag, data := api.FindByType("") if flag { - util.ResponseFormat(c,code.Success,data) + util.ResponseFormat(c, code.Success, data) } else { - util.ResponseFormat(c,code.ComError,data) + util.ResponseFormat(c, code.ComError, data) } } +// @Security ApiKeyAuth // @Summary 鏍规嵁鐖禝D鏌ユ壘瀛楀吀 // @Description 鏍规嵁鐖禝D鏌ユ壘瀛楀吀 // @Produce json @@ -40,14 +41,14 @@ func (controller DictionaryController) FindByParentId(c *gin.Context) { parentId := c.Query("parentId") if parentId == "" { - util.ResponseFormat(c,code.RequestParamError,"鍙傛暟鏈夎") + util.ResponseFormat(c, code.RequestParamError, "鍙傛暟鏈夎") return } var api dbapi.DicApi flag, data := api.FindByParentId(parentId) if flag { - util.ResponseFormat(c,code.Success,data) + util.ResponseFormat(c, code.Success, data) } else { - util.ResponseFormat(c,code.ComError,"鏌ヨ澶辫触") + util.ResponseFormat(c, code.ComError, "鏌ヨ澶辫触") } -} \ No newline at end of file +} -- Gitblit v1.8.0