학습데이터관리 > 현황 > 검수자 목록 추가

This commit is contained in:
2026-01-19 17:45:20 +09:00
parent a586c440fb
commit 1d910a22f9
4 changed files with 129 additions and 4 deletions

View File

@@ -53,7 +53,11 @@ public class LabelWorkService {
public Page<WorkerState> findlabelWorkStateList(LabelWorkDto.WorkerStateSearchReq searchReq) {
return labelWorkCoreService.findlabelWorkStateList(searchReq);
if (searchReq.getUserRole().equals("LABELER")) {
return labelWorkCoreService.findlabelWorkStateList(searchReq);
} else {
return labelWorkCoreService.findReviewerWorkStateList(searchReq);
}
}
public UUID findLastLabelWorkState() {