wangpengfei
2023-08-25 25c573d55986e02cf5f70cc3868e2b94a4be98e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package system
 
import (
    "github.com/gin-gonic/gin"
    v1 "srm/api/v1"
    "srm/middleware"
)
 
type AuthorityRouter struct{}
 
func (s *AuthorityRouter) InitAuthorityRouter(Router *gin.RouterGroup) {
    authorityRouter := Router.Group("authority").Use(middleware.OperationRecord())
    authorityRouterWithoutRecord := Router.Group("authority")
    authorityApi := v1.ApiGroupApp.SystemApiGroup.AuthorityApi
    {
        authorityRouter.POST("createAuthority", authorityApi.CreateAuthority)   // 创建角色
        authorityRouter.POST("deleteAuthority", authorityApi.DeleteAuthority)   // 删除角色
        authorityRouter.PUT("updateAuthority", authorityApi.UpdateAuthority)    // 更新角色
        authorityRouter.POST("copyAuthority", authorityApi.CopyAuthority)       // 拷贝角色
        authorityRouter.POST("setDataAuthority", authorityApi.SetDataAuthority) // 设置角色资源权限
    }
    {
        authorityRouterWithoutRecord.POST("getAuthorityList", authorityApi.GetAuthorityList) // 获取角色列表
    }
}