@@ -21,7 +21,7 @@ import ( | |||||
// @Param req body md.LoginReq true "用户名密码" | // @Param req body md.LoginReq true "用户名密码" | ||||
// @Success 200 {object} md.LoginResponse "token" | // @Success 200 {object} md.LoginResponse "token" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /login [post] | |||||
// @Router /api/login [post] | |||||
func Login(c *gin.Context) { | func Login(c *gin.Context) { | ||||
var req md.LoginReq | var req md.LoginReq | ||||
err := c.ShouldBindJSON(&req) | err := c.ShouldBindJSON(&req) | ||||
@@ -24,7 +24,7 @@ import ( | |||||
// @Param req body md.RegisterForMediumReq true "用户名密码" | // @Param req body md.RegisterForMediumReq true "用户名密码" | ||||
// @Success 200 string "success" | // @Success 200 string "success" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /registerForMedium [post] | |||||
// @Router /api/registerForMedium [post] | |||||
func RegisterForMedium(c *gin.Context) { | func RegisterForMedium(c *gin.Context) { | ||||
var req md.RegisterForMediumReq | var req md.RegisterForMediumReq | ||||
err := c.ShouldBindJSON(&req) | err := c.ShouldBindJSON(&req) | ||||
@@ -118,7 +118,7 @@ func RegisterForMedium(c *gin.Context) { | |||||
// @Param req body md.RegisterForAgentReq true "用户名密码" | // @Param req body md.RegisterForAgentReq true "用户名密码" | ||||
// @Success 200 string "success" | // @Success 200 string "success" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /registerForAgent [post] | |||||
// @Router /api/registerForAgent [post] | |||||
func RegisterForAgent(c *gin.Context) { | func RegisterForAgent(c *gin.Context) { | ||||
var req md.RegisterForAgentReq | var req md.RegisterForAgentReq | ||||
err := c.ShouldBindJSON(&req) | err := c.ShouldBindJSON(&req) | ||||
@@ -108,7 +108,7 @@ func PermissionGroupList(c *gin.Context) { | |||||
// @Produce json | // @Produce json | ||||
// @Success 200 {string} "具体看返回内容" | // @Success 200 {string} "具体看返回内容" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /role/roleList [GET] | |||||
// @Router /api/role/roleList [GET] | |||||
func RoleList(c *gin.Context) { | func RoleList(c *gin.Context) { | ||||
engine := db.DBs[svc.GetMasterId(c)] | engine := db.DBs[svc.GetMasterId(c)] | ||||
roleDb := implement.NewRoleDb(engine, 0) | roleDb := implement.NewRoleDb(engine, 0) | ||||
@@ -169,7 +169,7 @@ func RoleList(c *gin.Context) { | |||||
// @Param args body md.AddRoleReq true "请求参数" | // @Param args body md.AddRoleReq true "请求参数" | ||||
// @Success 200 {string} "success" | // @Success 200 {string} "success" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /role/addRole [POST] | |||||
// @Router /api/role/addRole [POST] | |||||
func AddRole(c *gin.Context) { | func AddRole(c *gin.Context) { | ||||
var req md.AddRoleReq | var req md.AddRoleReq | ||||
err := c.ShouldBindJSON(&req) | err := c.ShouldBindJSON(&req) | ||||
@@ -208,7 +208,7 @@ func AddRole(c *gin.Context) { | |||||
// @Param args body md.UpdateRoleReq true "请求参数" | // @Param args body md.UpdateRoleReq true "请求参数" | ||||
// @Success 200 {string} "success" | // @Success 200 {string} "success" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /role/updateRole [POST] | |||||
// @Router /api/role/updateRole [POST] | |||||
func UpdateRole(c *gin.Context) { | func UpdateRole(c *gin.Context) { | ||||
var req md.UpdateRoleReq | var req md.UpdateRoleReq | ||||
err := c.ShouldBindJSON(&req) | err := c.ShouldBindJSON(&req) | ||||
@@ -250,7 +250,7 @@ func UpdateRole(c *gin.Context) { | |||||
// @Param args body md.RoleBindPermissionGroupReq true "请求参数" | // @Param args body md.RoleBindPermissionGroupReq true "请求参数" | ||||
// @Success 200 {string} "success" | // @Success 200 {string} "success" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /role/roleBindPermissionGroup [POST] | |||||
// @Router /api/role/roleBindPermissionGroup [POST] | |||||
func RoleBindPermissionGroup(c *gin.Context) { | func RoleBindPermissionGroup(c *gin.Context) { | ||||
var req md.RoleBindPermissionGroupReq | var req md.RoleBindPermissionGroupReq | ||||
err := c.ShouldBindJSON(&req) | err := c.ShouldBindJSON(&req) | ||||
@@ -280,7 +280,7 @@ func RoleBindPermissionGroup(c *gin.Context) { | |||||
// @Param args body md.UpdateRoleStateReq true "请求参数" | // @Param args body md.UpdateRoleStateReq true "请求参数" | ||||
// @Success 200 {string} "success" | // @Success 200 {string} "success" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /role/updateRole [POST] | |||||
// @Router /api/role/updateRole [POST] | |||||
func UpdateRoleState(c *gin.Context) { | func UpdateRoleState(c *gin.Context) { | ||||
var req md.UpdateRoleStateReq | var req md.UpdateRoleStateReq | ||||
err := c.ShouldBindJSON(&req) | err := c.ShouldBindJSON(&req) | ||||
@@ -321,7 +321,7 @@ func UpdateRoleState(c *gin.Context) { | |||||
// @Param args body md.UpdateRoleStateReq true "请求参数" | // @Param args body md.UpdateRoleStateReq true "请求参数" | ||||
// @Success 200 {string} "success" | // @Success 200 {string} "success" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /role/deleteRole/{$id} [DELETE] | |||||
// @Router /api/role/deleteRole/{$id} [DELETE] | |||||
func DeleteRole(c *gin.Context) { | func DeleteRole(c *gin.Context) { | ||||
id := c.Param("id") | id := c.Param("id") | ||||
engine := db.DBs[svc.GetMasterId(c)] | engine := db.DBs[svc.GetMasterId(c)] | ||||
@@ -356,7 +356,7 @@ func DeleteRole(c *gin.Context) { | |||||
// @Param args body md.AdminListReq true "请求参数" | // @Param args body md.AdminListReq true "请求参数" | ||||
// @Success 200 {string} "具体看返回内容" | // @Success 200 {string} "具体看返回内容" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /role/adminList [POST] | |||||
// @Router /api/role/adminList [POST] | |||||
func AdminList(c *gin.Context) { | func AdminList(c *gin.Context) { | ||||
var req md.AdminListReq | var req md.AdminListReq | ||||
err := c.ShouldBindJSON(&req) | err := c.ShouldBindJSON(&req) | ||||
@@ -430,7 +430,7 @@ func AdminList(c *gin.Context) { | |||||
// @Param args body md.UpdateAdminStateReq true "请求参数" | // @Param args body md.UpdateAdminStateReq true "请求参数" | ||||
// @Success 200 {string} "success" | // @Success 200 {string} "success" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /role/updateAdminState [POST] | |||||
// @Router /api/role/updateAdminState [POST] | |||||
func UpdateAdminState(c *gin.Context) { | func UpdateAdminState(c *gin.Context) { | ||||
var req md.UpdateAdminStateReq | var req md.UpdateAdminStateReq | ||||
err := c.ShouldBindJSON(&req) | err := c.ShouldBindJSON(&req) | ||||
@@ -472,7 +472,7 @@ func UpdateAdminState(c *gin.Context) { | |||||
// @Param args body md.UpdateAdminReq true "请求参数" | // @Param args body md.UpdateAdminReq true "请求参数" | ||||
// @Success 200 {string} "success" | // @Success 200 {string} "success" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /role/updateAdmin [POST] | |||||
// @Router /api/role/updateAdmin [POST] | |||||
func UpdateAdmin(c *gin.Context) { | func UpdateAdmin(c *gin.Context) { | ||||
var req md.UpdateAdminReq | var req md.UpdateAdminReq | ||||
err := c.ShouldBindJSON(&req) | err := c.ShouldBindJSON(&req) | ||||
@@ -515,7 +515,7 @@ func UpdateAdmin(c *gin.Context) { | |||||
// @Param args body md.AddAdminReq true "请求参数" | // @Param args body md.AddAdminReq true "请求参数" | ||||
// @Success 200 {string} "success" | // @Success 200 {string} "success" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /role/addAdmin [POST] | |||||
// @Router /api/role/addAdmin [POST] | |||||
func AddAdmin(c *gin.Context) { | func AddAdmin(c *gin.Context) { | ||||
var req md.AddAdminReq | var req md.AddAdminReq | ||||
err := c.ShouldBindJSON(&req) | err := c.ShouldBindJSON(&req) | ||||
@@ -570,7 +570,7 @@ func AddAdmin(c *gin.Context) { | |||||
// @Produce json | // @Produce json | ||||
// @Success 200 {string} "success" | // @Success 200 {string} "success" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /role/deleteAdmin/{$adm_id} [DELETE] | |||||
// @Router /api/role/deleteAdmin/{$adm_id} [DELETE] | |||||
func DeleteAdmin(c *gin.Context) { | func DeleteAdmin(c *gin.Context) { | ||||
admId := c.Param("adm_id") | admId := c.Param("adm_id") | ||||
err := svc.AdminDelete(c, []int{utils.StrToInt(admId)}) | err := svc.AdminDelete(c, []int{utils.StrToInt(admId)}) | ||||
@@ -592,7 +592,7 @@ func DeleteAdmin(c *gin.Context) { | |||||
// @Param args body md.BindAdminRoleReq true "请求参数" | // @Param args body md.BindAdminRoleReq true "请求参数" | ||||
// @Success 200 {string} "success" | // @Success 200 {string} "success" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /role/bindAdminRole/ [POST] | |||||
// @Router /api/role/bindAdminRole/ [POST] | |||||
func BindAdminRole(c *gin.Context) { | func BindAdminRole(c *gin.Context) { | ||||
var req md.BindAdminRoleReq | var req md.BindAdminRoleReq | ||||
err := c.ShouldBindJSON(&req) | err := c.ShouldBindJSON(&req) | ||||
@@ -621,7 +621,7 @@ func BindAdminRole(c *gin.Context) { | |||||
// @param adm_id query string true "管理员id" | // @param adm_id query string true "管理员id" | ||||
// @Success 200 {string} "具体看返回内容" | // @Success 200 {string} "具体看返回内容" | ||||
// @Failure 400 {object} md.Response "具体错误" | // @Failure 400 {object} md.Response "具体错误" | ||||
// @Router /role/adminInfo [GET] | |||||
// @Router /api/role/adminInfo [GET] | |||||
func AdminInfo(c *gin.Context) { | func AdminInfo(c *gin.Context) { | ||||
admId := c.DefaultQuery("adm_id", "") | admId := c.DefaultQuery("adm_id", "") | ||||
engine := db.DBs[svc.GetMasterId(c)] | engine := db.DBs[svc.GetMasterId(c)] | ||||
@@ -25,7 +25,7 @@ const docTemplate = `{ | |||||
"host": "{{.Host}}", | "host": "{{.Host}}", | ||||
"basePath": "{{.BasePath}}", | "basePath": "{{.BasePath}}", | ||||
"paths": { | "paths": { | ||||
"/login": { | |||||
"/api/login": { | |||||
"post": { | "post": { | ||||
"description": "登入", | "description": "登入", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -65,7 +65,7 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/registerForAgent": { | |||||
"/api/registerForAgent": { | |||||
"post": { | "post": { | ||||
"description": "注册模块-渠道代理注册", | "description": "注册模块-渠道代理注册", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -105,7 +105,7 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/registerForMedium": { | |||||
"/api/registerForMedium": { | |||||
"post": { | "post": { | ||||
"description": "注册模块-媒体注册", | "description": "注册模块-媒体注册", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -145,7 +145,7 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/addAdmin": { | |||||
"/api/role/addAdmin": { | |||||
"post": { | "post": { | ||||
"description": "权限管理-新增管理员", | "description": "权限管理-新增管理员", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -192,7 +192,7 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/addRole": { | |||||
"/api/role/addRole": { | |||||
"post": { | "post": { | ||||
"description": "权限管理-添加角色", | "description": "权限管理-添加角色", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -239,7 +239,7 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/adminInfo": { | |||||
"/api/role/adminInfo": { | |||||
"get": { | "get": { | ||||
"description": "权限管理-管理员信息", | "description": "权限管理-管理员信息", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -284,7 +284,7 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/adminList": { | |||||
"/api/role/adminList": { | |||||
"post": { | "post": { | ||||
"description": "权限管理-管理员列表", | "description": "权限管理-管理员列表", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -331,7 +331,7 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/bindAdminRole/": { | |||||
"/api/role/bindAdminRole/": { | |||||
"post": { | "post": { | ||||
"description": "权限管理-管理员绑定角色", | "description": "权限管理-管理员绑定角色", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -378,7 +378,7 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/deleteAdmin/{$adm_id}": { | |||||
"/api/role/deleteAdmin/{$adm_id}": { | |||||
"delete": { | "delete": { | ||||
"description": "权限管理-删除管理员", | "description": "权限管理-删除管理员", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -416,7 +416,7 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/deleteRole/{$id}": { | |||||
"/api/role/deleteRole/{$id}": { | |||||
"delete": { | "delete": { | ||||
"description": "权限管理-删除角色", | "description": "权限管理-删除角色", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -463,9 +463,9 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/permissionGroupList": { | |||||
"get": { | |||||
"description": "权限管理-权限组列表", | |||||
"/api/role/roleBindPermissionGroup": { | |||||
"post": { | |||||
"description": "权限管理-角色绑定权限组", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -475,7 +475,7 @@ const docTemplate = `{ | |||||
"tags": [ | "tags": [ | ||||
"权限管理" | "权限管理" | ||||
], | ], | ||||
"summary": "权限组列表", | |||||
"summary": "角色绑定权限组", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -485,16 +485,18 @@ const docTemplate = `{ | |||||
"required": true | "required": true | ||||
}, | }, | ||||
{ | { | ||||
"type": "string", | |||||
"description": "管理员id", | |||||
"name": "adm_id", | |||||
"in": "query", | |||||
"required": true | |||||
"description": "请求参数", | |||||
"name": "args", | |||||
"in": "body", | |||||
"required": true, | |||||
"schema": { | |||||
"$ref": "#/definitions/md.RoleBindPermissionGroupReq" | |||||
} | |||||
} | } | ||||
], | ], | ||||
"responses": { | "responses": { | ||||
"200": { | "200": { | ||||
"description": "具体看返回内容", | |||||
"description": "success", | |||||
"schema": { | "schema": { | ||||
"type": "string" | "type": "string" | ||||
} | } | ||||
@@ -508,9 +510,9 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/roleBindPermissionGroup": { | |||||
"post": { | |||||
"description": "权限管理-角色绑定权限组", | |||||
"/api/role/roleList": { | |||||
"get": { | |||||
"description": "权限管理-角色列表", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -520,7 +522,7 @@ const docTemplate = `{ | |||||
"tags": [ | "tags": [ | ||||
"权限管理" | "权限管理" | ||||
], | ], | ||||
"summary": "角色绑定权限组", | |||||
"summary": "角色列表", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -528,20 +530,11 @@ const docTemplate = `{ | |||||
"name": "Authorization", | "name": "Authorization", | ||||
"in": "header", | "in": "header", | ||||
"required": true | "required": true | ||||
}, | |||||
{ | |||||
"description": "请求参数", | |||||
"name": "args", | |||||
"in": "body", | |||||
"required": true, | |||||
"schema": { | |||||
"$ref": "#/definitions/md.RoleBindPermissionGroupReq" | |||||
} | |||||
} | } | ||||
], | ], | ||||
"responses": { | "responses": { | ||||
"200": { | "200": { | ||||
"description": "success", | |||||
"description": "具体看返回内容", | |||||
"schema": { | "schema": { | ||||
"type": "string" | "type": "string" | ||||
} | } | ||||
@@ -555,9 +548,9 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/roleList": { | |||||
"get": { | |||||
"description": "权限管理-角色列表", | |||||
"/api/role/updateAdmin": { | |||||
"post": { | |||||
"description": "权限管理-修改管理员信息", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -567,7 +560,7 @@ const docTemplate = `{ | |||||
"tags": [ | "tags": [ | ||||
"权限管理" | "权限管理" | ||||
], | ], | ||||
"summary": "角色列表", | |||||
"summary": "修改管理员信息", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -575,11 +568,20 @@ const docTemplate = `{ | |||||
"name": "Authorization", | "name": "Authorization", | ||||
"in": "header", | "in": "header", | ||||
"required": true | "required": true | ||||
}, | |||||
{ | |||||
"description": "请求参数", | |||||
"name": "args", | |||||
"in": "body", | |||||
"required": true, | |||||
"schema": { | |||||
"$ref": "#/definitions/md.UpdateAdminReq" | |||||
} | |||||
} | } | ||||
], | ], | ||||
"responses": { | "responses": { | ||||
"200": { | "200": { | ||||
"description": "具体看返回内容", | |||||
"description": "success", | |||||
"schema": { | "schema": { | ||||
"type": "string" | "type": "string" | ||||
} | } | ||||
@@ -593,9 +595,9 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/updateAdmin": { | |||||
"/api/role/updateAdminState": { | |||||
"post": { | "post": { | ||||
"description": "权限管理-修改管理员信息", | |||||
"description": "权限管理-修改管理员状态", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -605,7 +607,7 @@ const docTemplate = `{ | |||||
"tags": [ | "tags": [ | ||||
"权限管理" | "权限管理" | ||||
], | ], | ||||
"summary": "修改管理员信息", | |||||
"summary": "修改管理员状态", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -620,7 +622,7 @@ const docTemplate = `{ | |||||
"in": "body", | "in": "body", | ||||
"required": true, | "required": true, | ||||
"schema": { | "schema": { | ||||
"$ref": "#/definitions/md.UpdateAdminReq" | |||||
"$ref": "#/definitions/md.UpdateAdminStateReq" | |||||
} | } | ||||
} | } | ||||
], | ], | ||||
@@ -640,9 +642,9 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/updateAdminState": { | |||||
"/api/role/updateRole": { | |||||
"post": { | "post": { | ||||
"description": "权限管理-修改管理员状态", | |||||
"description": "权限管理-修改角色状态", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -652,7 +654,7 @@ const docTemplate = `{ | |||||
"tags": [ | "tags": [ | ||||
"权限管理" | "权限管理" | ||||
], | ], | ||||
"summary": "修改管理员状态", | |||||
"summary": "修改角色状态", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -667,7 +669,7 @@ const docTemplate = `{ | |||||
"in": "body", | "in": "body", | ||||
"required": true, | "required": true, | ||||
"schema": { | "schema": { | ||||
"$ref": "#/definitions/md.UpdateAdminStateReq" | |||||
"$ref": "#/definitions/md.UpdateRoleStateReq" | |||||
} | } | ||||
} | } | ||||
], | ], | ||||
@@ -687,9 +689,9 @@ const docTemplate = `{ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/updateRole": { | |||||
"post": { | |||||
"description": "权限管理-修改角色状态", | |||||
"/role/permissionGroupList": { | |||||
"get": { | |||||
"description": "权限管理-权限组列表", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -699,7 +701,7 @@ const docTemplate = `{ | |||||
"tags": [ | "tags": [ | ||||
"权限管理" | "权限管理" | ||||
], | ], | ||||
"summary": "修改角色状态", | |||||
"summary": "权限组列表", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -709,18 +711,16 @@ const docTemplate = `{ | |||||
"required": true | "required": true | ||||
}, | }, | ||||
{ | { | ||||
"description": "请求参数", | |||||
"name": "args", | |||||
"in": "body", | |||||
"required": true, | |||||
"schema": { | |||||
"$ref": "#/definitions/md.UpdateRoleStateReq" | |||||
} | |||||
"type": "string", | |||||
"description": "管理员id", | |||||
"name": "adm_id", | |||||
"in": "query", | |||||
"required": true | |||||
} | } | ||||
], | ], | ||||
"responses": { | "responses": { | ||||
"200": { | "200": { | ||||
"description": "success", | |||||
"description": "具体看返回内容", | |||||
"schema": { | "schema": { | ||||
"type": "string" | "type": "string" | ||||
} | } | ||||
@@ -17,7 +17,7 @@ | |||||
}, | }, | ||||
"host": "localhost:1002 or xxxx.advertisement.dengbiao.top", | "host": "localhost:1002 or xxxx.advertisement.dengbiao.top", | ||||
"paths": { | "paths": { | ||||
"/login": { | |||||
"/api/login": { | |||||
"post": { | "post": { | ||||
"description": "登入", | "description": "登入", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -57,7 +57,7 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/registerForAgent": { | |||||
"/api/registerForAgent": { | |||||
"post": { | "post": { | ||||
"description": "注册模块-渠道代理注册", | "description": "注册模块-渠道代理注册", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -97,7 +97,7 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/registerForMedium": { | |||||
"/api/registerForMedium": { | |||||
"post": { | "post": { | ||||
"description": "注册模块-媒体注册", | "description": "注册模块-媒体注册", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -137,7 +137,7 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/addAdmin": { | |||||
"/api/role/addAdmin": { | |||||
"post": { | "post": { | ||||
"description": "权限管理-新增管理员", | "description": "权限管理-新增管理员", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -184,7 +184,7 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/addRole": { | |||||
"/api/role/addRole": { | |||||
"post": { | "post": { | ||||
"description": "权限管理-添加角色", | "description": "权限管理-添加角色", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -231,7 +231,7 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/adminInfo": { | |||||
"/api/role/adminInfo": { | |||||
"get": { | "get": { | ||||
"description": "权限管理-管理员信息", | "description": "权限管理-管理员信息", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -276,7 +276,7 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/adminList": { | |||||
"/api/role/adminList": { | |||||
"post": { | "post": { | ||||
"description": "权限管理-管理员列表", | "description": "权限管理-管理员列表", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -323,7 +323,7 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/bindAdminRole/": { | |||||
"/api/role/bindAdminRole/": { | |||||
"post": { | "post": { | ||||
"description": "权限管理-管理员绑定角色", | "description": "权限管理-管理员绑定角色", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -370,7 +370,7 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/deleteAdmin/{$adm_id}": { | |||||
"/api/role/deleteAdmin/{$adm_id}": { | |||||
"delete": { | "delete": { | ||||
"description": "权限管理-删除管理员", | "description": "权限管理-删除管理员", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -408,7 +408,7 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/deleteRole/{$id}": { | |||||
"/api/role/deleteRole/{$id}": { | |||||
"delete": { | "delete": { | ||||
"description": "权限管理-删除角色", | "description": "权限管理-删除角色", | ||||
"consumes": [ | "consumes": [ | ||||
@@ -455,9 +455,9 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/permissionGroupList": { | |||||
"get": { | |||||
"description": "权限管理-权限组列表", | |||||
"/api/role/roleBindPermissionGroup": { | |||||
"post": { | |||||
"description": "权限管理-角色绑定权限组", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -467,7 +467,7 @@ | |||||
"tags": [ | "tags": [ | ||||
"权限管理" | "权限管理" | ||||
], | ], | ||||
"summary": "权限组列表", | |||||
"summary": "角色绑定权限组", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -477,16 +477,18 @@ | |||||
"required": true | "required": true | ||||
}, | }, | ||||
{ | { | ||||
"type": "string", | |||||
"description": "管理员id", | |||||
"name": "adm_id", | |||||
"in": "query", | |||||
"required": true | |||||
"description": "请求参数", | |||||
"name": "args", | |||||
"in": "body", | |||||
"required": true, | |||||
"schema": { | |||||
"$ref": "#/definitions/md.RoleBindPermissionGroupReq" | |||||
} | |||||
} | } | ||||
], | ], | ||||
"responses": { | "responses": { | ||||
"200": { | "200": { | ||||
"description": "具体看返回内容", | |||||
"description": "success", | |||||
"schema": { | "schema": { | ||||
"type": "string" | "type": "string" | ||||
} | } | ||||
@@ -500,9 +502,9 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/roleBindPermissionGroup": { | |||||
"post": { | |||||
"description": "权限管理-角色绑定权限组", | |||||
"/api/role/roleList": { | |||||
"get": { | |||||
"description": "权限管理-角色列表", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -512,7 +514,7 @@ | |||||
"tags": [ | "tags": [ | ||||
"权限管理" | "权限管理" | ||||
], | ], | ||||
"summary": "角色绑定权限组", | |||||
"summary": "角色列表", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -520,20 +522,11 @@ | |||||
"name": "Authorization", | "name": "Authorization", | ||||
"in": "header", | "in": "header", | ||||
"required": true | "required": true | ||||
}, | |||||
{ | |||||
"description": "请求参数", | |||||
"name": "args", | |||||
"in": "body", | |||||
"required": true, | |||||
"schema": { | |||||
"$ref": "#/definitions/md.RoleBindPermissionGroupReq" | |||||
} | |||||
} | } | ||||
], | ], | ||||
"responses": { | "responses": { | ||||
"200": { | "200": { | ||||
"description": "success", | |||||
"description": "具体看返回内容", | |||||
"schema": { | "schema": { | ||||
"type": "string" | "type": "string" | ||||
} | } | ||||
@@ -547,9 +540,9 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/roleList": { | |||||
"get": { | |||||
"description": "权限管理-角色列表", | |||||
"/api/role/updateAdmin": { | |||||
"post": { | |||||
"description": "权限管理-修改管理员信息", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -559,7 +552,7 @@ | |||||
"tags": [ | "tags": [ | ||||
"权限管理" | "权限管理" | ||||
], | ], | ||||
"summary": "角色列表", | |||||
"summary": "修改管理员信息", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -567,11 +560,20 @@ | |||||
"name": "Authorization", | "name": "Authorization", | ||||
"in": "header", | "in": "header", | ||||
"required": true | "required": true | ||||
}, | |||||
{ | |||||
"description": "请求参数", | |||||
"name": "args", | |||||
"in": "body", | |||||
"required": true, | |||||
"schema": { | |||||
"$ref": "#/definitions/md.UpdateAdminReq" | |||||
} | |||||
} | } | ||||
], | ], | ||||
"responses": { | "responses": { | ||||
"200": { | "200": { | ||||
"description": "具体看返回内容", | |||||
"description": "success", | |||||
"schema": { | "schema": { | ||||
"type": "string" | "type": "string" | ||||
} | } | ||||
@@ -585,9 +587,9 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/updateAdmin": { | |||||
"/api/role/updateAdminState": { | |||||
"post": { | "post": { | ||||
"description": "权限管理-修改管理员信息", | |||||
"description": "权限管理-修改管理员状态", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -597,7 +599,7 @@ | |||||
"tags": [ | "tags": [ | ||||
"权限管理" | "权限管理" | ||||
], | ], | ||||
"summary": "修改管理员信息", | |||||
"summary": "修改管理员状态", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -612,7 +614,7 @@ | |||||
"in": "body", | "in": "body", | ||||
"required": true, | "required": true, | ||||
"schema": { | "schema": { | ||||
"$ref": "#/definitions/md.UpdateAdminReq" | |||||
"$ref": "#/definitions/md.UpdateAdminStateReq" | |||||
} | } | ||||
} | } | ||||
], | ], | ||||
@@ -632,9 +634,9 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/updateAdminState": { | |||||
"/api/role/updateRole": { | |||||
"post": { | "post": { | ||||
"description": "权限管理-修改管理员状态", | |||||
"description": "权限管理-修改角色状态", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -644,7 +646,7 @@ | |||||
"tags": [ | "tags": [ | ||||
"权限管理" | "权限管理" | ||||
], | ], | ||||
"summary": "修改管理员状态", | |||||
"summary": "修改角色状态", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -659,7 +661,7 @@ | |||||
"in": "body", | "in": "body", | ||||
"required": true, | "required": true, | ||||
"schema": { | "schema": { | ||||
"$ref": "#/definitions/md.UpdateAdminStateReq" | |||||
"$ref": "#/definitions/md.UpdateRoleStateReq" | |||||
} | } | ||||
} | } | ||||
], | ], | ||||
@@ -679,9 +681,9 @@ | |||||
} | } | ||||
} | } | ||||
}, | }, | ||||
"/role/updateRole": { | |||||
"post": { | |||||
"description": "权限管理-修改角色状态", | |||||
"/role/permissionGroupList": { | |||||
"get": { | |||||
"description": "权限管理-权限组列表", | |||||
"consumes": [ | "consumes": [ | ||||
"application/json" | "application/json" | ||||
], | ], | ||||
@@ -691,7 +693,7 @@ | |||||
"tags": [ | "tags": [ | ||||
"权限管理" | "权限管理" | ||||
], | ], | ||||
"summary": "修改角色状态", | |||||
"summary": "权限组列表", | |||||
"parameters": [ | "parameters": [ | ||||
{ | { | ||||
"type": "string", | "type": "string", | ||||
@@ -701,18 +703,16 @@ | |||||
"required": true | "required": true | ||||
}, | }, | ||||
{ | { | ||||
"description": "请求参数", | |||||
"name": "args", | |||||
"in": "body", | |||||
"required": true, | |||||
"schema": { | |||||
"$ref": "#/definitions/md.UpdateRoleStateReq" | |||||
} | |||||
"type": "string", | |||||
"description": "管理员id", | |||||
"name": "adm_id", | |||||
"in": "query", | |||||
"required": true | |||||
} | } | ||||
], | ], | ||||
"responses": { | "responses": { | ||||
"200": { | "200": { | ||||
"description": "success", | |||||
"description": "具体看返回内容", | |||||
"schema": { | "schema": { | ||||
"type": "string" | "type": "string" | ||||
} | } | ||||
@@ -177,7 +177,7 @@ info: | |||||
title: 广告联盟-站长平台 | title: 广告联盟-站长平台 | ||||
version: "1.0" | version: "1.0" | ||||
paths: | paths: | ||||
/login: | |||||
/api/login: | |||||
post: | post: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -203,7 +203,7 @@ paths: | |||||
summary: 登陆 | summary: 登陆 | ||||
tags: | tags: | ||||
- 登录 | - 登录 | ||||
/registerForAgent: | |||||
/api/registerForAgent: | |||||
post: | post: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -229,7 +229,7 @@ paths: | |||||
summary: 渠道代理注册 | summary: 渠道代理注册 | ||||
tags: | tags: | ||||
- 注册模块 | - 注册模块 | ||||
/registerForMedium: | |||||
/api/registerForMedium: | |||||
post: | post: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -255,7 +255,7 @@ paths: | |||||
summary: 媒体注册 | summary: 媒体注册 | ||||
tags: | tags: | ||||
- 注册模块 | - 注册模块 | ||||
/role/addAdmin: | |||||
/api/role/addAdmin: | |||||
post: | post: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -286,7 +286,7 @@ paths: | |||||
summary: 新增管理员 | summary: 新增管理员 | ||||
tags: | tags: | ||||
- 权限管理 | - 权限管理 | ||||
/role/addRole: | |||||
/api/role/addRole: | |||||
post: | post: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -317,7 +317,7 @@ paths: | |||||
summary: 添加角色 | summary: 添加角色 | ||||
tags: | tags: | ||||
- 权限管理 | - 权限管理 | ||||
/role/adminInfo: | |||||
/api/role/adminInfo: | |||||
get: | get: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -347,7 +347,7 @@ paths: | |||||
summary: 管理员信息 | summary: 管理员信息 | ||||
tags: | tags: | ||||
- 权限管理 | - 权限管理 | ||||
/role/adminList: | |||||
/api/role/adminList: | |||||
post: | post: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -378,7 +378,7 @@ paths: | |||||
summary: 管理员列表 | summary: 管理员列表 | ||||
tags: | tags: | ||||
- 权限管理 | - 权限管理 | ||||
/role/bindAdminRole/: | |||||
/api/role/bindAdminRole/: | |||||
post: | post: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -409,7 +409,7 @@ paths: | |||||
summary: 管理员绑定角色 | summary: 管理员绑定角色 | ||||
tags: | tags: | ||||
- 权限管理 | - 权限管理 | ||||
/role/deleteAdmin/{$adm_id}: | |||||
/api/role/deleteAdmin/{$adm_id}: | |||||
delete: | delete: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -434,7 +434,7 @@ paths: | |||||
summary: 删除管理员 | summary: 删除管理员 | ||||
tags: | tags: | ||||
- 权限管理 | - 权限管理 | ||||
/role/deleteRole/{$id}: | |||||
/api/role/deleteRole/{$id}: | |||||
delete: | delete: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -465,37 +465,7 @@ paths: | |||||
summary: 删除角色 | summary: 删除角色 | ||||
tags: | tags: | ||||
- 权限管理 | - 权限管理 | ||||
/role/permissionGroupList: | |||||
get: | |||||
consumes: | |||||
- application/json | |||||
description: 权限管理-权限组列表 | |||||
parameters: | |||||
- description: 验证参数Bearer和token空格拼接 | |||||
in: header | |||||
name: Authorization | |||||
required: true | |||||
type: string | |||||
- description: 管理员id | |||||
in: query | |||||
name: adm_id | |||||
required: true | |||||
type: string | |||||
produces: | |||||
- application/json | |||||
responses: | |||||
"200": | |||||
description: 具体看返回内容 | |||||
schema: | |||||
type: string | |||||
"400": | |||||
description: 具体错误 | |||||
schema: | |||||
$ref: '#/definitions/md.Response' | |||||
summary: 权限组列表 | |||||
tags: | |||||
- 权限管理 | |||||
/role/roleBindPermissionGroup: | |||||
/api/role/roleBindPermissionGroup: | |||||
post: | post: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -526,7 +496,7 @@ paths: | |||||
summary: 角色绑定权限组 | summary: 角色绑定权限组 | ||||
tags: | tags: | ||||
- 权限管理 | - 权限管理 | ||||
/role/roleList: | |||||
/api/role/roleList: | |||||
get: | get: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -551,7 +521,7 @@ paths: | |||||
summary: 角色列表 | summary: 角色列表 | ||||
tags: | tags: | ||||
- 权限管理 | - 权限管理 | ||||
/role/updateAdmin: | |||||
/api/role/updateAdmin: | |||||
post: | post: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -582,7 +552,7 @@ paths: | |||||
summary: 修改管理员信息 | summary: 修改管理员信息 | ||||
tags: | tags: | ||||
- 权限管理 | - 权限管理 | ||||
/role/updateAdminState: | |||||
/api/role/updateAdminState: | |||||
post: | post: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -613,7 +583,7 @@ paths: | |||||
summary: 修改管理员状态 | summary: 修改管理员状态 | ||||
tags: | tags: | ||||
- 权限管理 | - 权限管理 | ||||
/role/updateRole: | |||||
/api/role/updateRole: | |||||
post: | post: | ||||
consumes: | consumes: | ||||
- application/json | - application/json | ||||
@@ -644,6 +614,36 @@ paths: | |||||
summary: 修改角色状态 | summary: 修改角色状态 | ||||
tags: | tags: | ||||
- 权限管理 | - 权限管理 | ||||
/role/permissionGroupList: | |||||
get: | |||||
consumes: | |||||
- application/json | |||||
description: 权限管理-权限组列表 | |||||
parameters: | |||||
- description: 验证参数Bearer和token空格拼接 | |||||
in: header | |||||
name: Authorization | |||||
required: true | |||||
type: string | |||||
- description: 管理员id | |||||
in: query | |||||
name: adm_id | |||||
required: true | |||||
type: string | |||||
produces: | |||||
- application/json | |||||
responses: | |||||
"200": | |||||
description: 具体看返回内容 | |||||
schema: | |||||
type: string | |||||
"400": | |||||
description: 具体错误 | |||||
schema: | |||||
$ref: '#/definitions/md.Response' | |||||
summary: 权限组列表 | |||||
tags: | |||||
- 权限管理 | |||||
securityDefinitions: | securityDefinitions: | ||||
MasterID: | MasterID: | ||||
in: header | in: header | ||||