라벨 재할당 가능한 대상자 목록 API
This commit is contained in:
@@ -223,4 +223,20 @@ public class LabelAllocateApiController {
|
||||
LabelAllocateDto.searchReq searchReq = new LabelAllocateDto.searchReq(page, size, "");
|
||||
return ApiResponseDto.ok(labelAllocateService.findDaliyList(searchReq, uuid, userId, type));
|
||||
}
|
||||
|
||||
@Operation(summary = "이관 가능한 사용자 목록 조회", description = "이관 가능한 사용자 목록 조회")
|
||||
@ApiResponses(
|
||||
value = {
|
||||
@ApiResponse(responseCode = "200", description = "조회 성공"),
|
||||
@ApiResponse(responseCode = "404", description = "코드를 찾을 수 없음"),
|
||||
@ApiResponse(responseCode = "500", description = "서버 오류")
|
||||
})
|
||||
@GetMapping("/move-user")
|
||||
public ApiResponseDto<List<LabelAllocateDto.MoveUserList>> availMoveUserList(
|
||||
@Parameter(description = "해당 사용자 사번", example = "01022223333") @RequestParam String userId,
|
||||
@Parameter(description = "회차 마스터 key", example = "f97dc186-e6d3-4645-9737-3173dde8dc64")
|
||||
@RequestParam
|
||||
String uuid) {
|
||||
return ApiResponseDto.ok(labelAllocateService.moveAvailUserList(userId, uuid));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user