You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
655 B

package router
import (
"bkb-seller/api/sys"
"bkb-seller/middleware"
"github.com/gin-gonic/gin"
)
func InitAuthorityRouter(Router *gin.RouterGroup) {
AuthorityRouter := Router.Group("authority").Use(middleware.OperationRecord())
{
AuthorityRouter.POST("createAuthority", sys.CreateAuthority) // 创建角色
AuthorityRouter.POST("deleteAuthority", sys.DeleteAuthority) // 删除角色
AuthorityRouter.PUT("updateAuthority", sys.UpdateAuthority) // 更新角色
AuthorityRouter.POST("copyAuthority", sys.CopyAuthority) // 更新角色
AuthorityRouter.POST("getAuthorityList", sys.GetAuthorityList) // 获取角色列表
}
}