|
|
@ -60,6 +60,7 @@ type AuthAndPathIn struct { |
|
|
|
AuthorityId string `json:"authorityId"` |
|
|
|
Apis []dbModel.Api `json:"apis"` |
|
|
|
} |
|
|
|
|
|
|
|
// @Tags Api
|
|
|
|
// @Summary 创建api和角色关系
|
|
|
|
// @Security ApiKeyAuth
|
|
|
@ -68,10 +69,10 @@ type AuthAndPathIn struct { |
|
|
|
// @Param data body api.AuthAndPathIn true "创建api和角色关系"
|
|
|
|
// @Success 200 {string} json "{"success":true,"data":{},"msg":"获取成功"}"
|
|
|
|
// @Router /api/setAuthAndPath [post]
|
|
|
|
func SetAuthAndPath(c *gin.Context){ |
|
|
|
func SetAuthAndPath(c *gin.Context) { |
|
|
|
var authAndPathIn 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 { |
|
|
|
servers.ReportFormat(c, false, fmt.Sprintf("添加失败:%v", err), gin.H{}) |
|
|
|
} else { |
|
|
@ -79,7 +80,7 @@ func SetAuthAndPath(c *gin.Context){ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// @Tags api
|
|
|
|
// @Tags Api
|
|
|
|
// @Summary 分页获取角色列表
|
|
|
|
// @Security ApiKeyAuth
|
|
|
|
// @accept application/json
|
|
|
|