| 120 | } |
| 121 | |
| 122 | type AssignUserRoleRequest struct { |
| 123 | UserId int `json:"user_id" binding:"required,gt=0"` // 用户ID |
| 124 | RoleIds []int `json:"role_ids"` // 角色ID列表 |
| 125 | MenuIds []int `json:"menu_ids"` // 菜单ID列表 |
| 126 | ApiIds []int `json:"api_ids"` // API ID列表 |
| 127 | } |
| 128 | |
| 129 | type AssignUsersRoleRequest struct { |
| 130 | UserIds []int `json:"user_ids" binding:"required,gt=0"` // 用户ID |
nothing calls this directly
no outgoing calls
no test coverage detected