refactor: 系统模块角色分配相关优化

This commit is contained in:
meilin.huang
2023-12-18 22:39:32 +08:00
parent 574d27f6da
commit 1f6c14ee2f
28 changed files with 695 additions and 386 deletions

View File

@@ -5,3 +5,16 @@ type SysLogQuery struct {
Type int8 `json:"type" form:"type"`
Description string `json:"description" form:"description"`
}
type RoleQuery struct {
Ids []uint64 `json:"ids"`
Name string `json:"name" form:"name"`
Code string `json:"code" form:"code"`
NotIds []uint64 `json:"notIds"`
}
type RoleAccountQuery struct {
RoleId uint64 `json:"roleId" `
Name string `json:"name" form:"name"`
Username string `json:"username" form:"username"`
}