提交 ce613ae6 编写于 作者: Mr.奇淼('s avatar Mr.奇淼(

swagger 文档更新

上级 a45f3855
...@@ -57,9 +57,10 @@ func DeleteApi(c *gin.Context) { ...@@ -57,9 +57,10 @@ func DeleteApi(c *gin.Context) {
} }
type AuthAndPathIn struct { type AuthAndPathIn struct {
AuthorityId string `json:"authorityId"` AuthorityId string `json:"authorityId"`
Apis []dbModel.Api `json:"apis"` Apis []dbModel.Api `json:"apis"`
} }
// @Tags Api // @Tags Api
// @Summary 创建api和角色关系 // @Summary 创建api和角色关系
// @Security ApiKeyAuth // @Security ApiKeyAuth
...@@ -68,10 +69,10 @@ type AuthAndPathIn struct { ...@@ -68,10 +69,10 @@ type AuthAndPathIn struct {
// @Param data body api.AuthAndPathIn true "创建api和角色关系" // @Param data body api.AuthAndPathIn true "创建api和角色关系"
// @Success 200 {string} json "{"success":true,"data":{},"msg":"获取成功"}" // @Success 200 {string} json "{"success":true,"data":{},"msg":"获取成功"}"
// @Router /api/setAuthAndPath [post] // @Router /api/setAuthAndPath [post]
func SetAuthAndPath(c *gin.Context){ func SetAuthAndPath(c *gin.Context) {
var authAndPathIn AuthAndPathIn var authAndPathIn AuthAndPathIn
_ = c.BindJSON(&authAndPathIn) _ = c.BindJSON(&authAndPathIn)
err:=new(dbModel.ApiAuthority).SetAuthAndPath(authAndPathIn.AuthorityId,authAndPathIn.Apis) err := new(dbModel.ApiAuthority).SetAuthAndPath(authAndPathIn.AuthorityId, authAndPathIn.Apis)
if err != nil { if err != nil {
servers.ReportFormat(c, false, fmt.Sprintf("添加失败:%v", err), gin.H{}) servers.ReportFormat(c, false, fmt.Sprintf("添加失败:%v", err), gin.H{})
} else { } else {
...@@ -79,7 +80,7 @@ func SetAuthAndPath(c *gin.Context){ ...@@ -79,7 +80,7 @@ func SetAuthAndPath(c *gin.Context){
} }
} }
// @Tags api // @Tags Api
// @Summary 分页获取角色列表 // @Summary 分页获取角色列表
// @Security ApiKeyAuth // @Security ApiKeyAuth
// @accept application/json // @accept application/json
...@@ -95,11 +96,11 @@ func GetApiList(c *gin.Context) { ...@@ -95,11 +96,11 @@ func GetApiList(c *gin.Context) {
servers.ReportFormat(c, false, fmt.Sprintf("获取数据失败,%v", err), gin.H{}) servers.ReportFormat(c, false, fmt.Sprintf("获取数据失败,%v", err), gin.H{})
} else { } else {
servers.ReportFormat(c, true, "获取数据成功", gin.H{ servers.ReportFormat(c, true, "获取数据成功", gin.H{
"list": list, "list": list,
"total": total, "total": total,
"page": pageInfo.Page, "page": pageInfo.Page,
"pageSize": pageInfo.PageSize, "pageSize": pageInfo.PageSize,
}) })
} }
} }
\ No newline at end of file
// GENERATED BY THE COMMAND ABOVE; DO NOT EDIT // GENERATED BY THE COMMAND ABOVE; DO NOT EDIT
// This file was generated by swaggo/swag at // This file was generated by swaggo/swag at
// 2019-09-21 22:57:49.3172136 +0800 CST m=+0.048845201 // 2019-09-22 15:52:19.9796956 +0800 CST m=+0.472771301
package docs package docs
...@@ -118,7 +118,7 @@ var doc = `{ ...@@ -118,7 +118,7 @@ var doc = `{
"application/json" "application/json"
], ],
"tags": [ "tags": [
"api" "Api"
], ],
"summary": "分页获取角色列表", "summary": "分页获取角色列表",
"parameters": [ "parameters": [
......
...@@ -101,7 +101,7 @@ ...@@ -101,7 +101,7 @@
"application/json" "application/json"
], ],
"tags": [ "tags": [
"api" "Api"
], ],
"summary": "分页获取角色列表", "summary": "分页获取角色列表",
"parameters": [ "parameters": [
......
...@@ -180,7 +180,7 @@ paths: ...@@ -180,7 +180,7 @@ paths:
- ApiKeyAuth: [] - ApiKeyAuth: []
summary: 分页获取角色列表 summary: 分页获取角色列表
tags: tags:
- api - Api
/api/setAuthAndPath: /api/setAuthAndPath:
post: post:
consumes: consumes:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册