검수자 default 예시 수정
This commit is contained in:
@@ -49,7 +49,7 @@ public class TrainingDataReviewApiController {
|
||||
public ApiResponseDto<Page<ReviewListDto>> findReviewAssignedList(
|
||||
@RequestParam(defaultValue = "0") int page,
|
||||
@RequestParam(defaultValue = "20") int size,
|
||||
@RequestParam(defaultValue = "01022223333") String userId) {
|
||||
@RequestParam(defaultValue = "K20251212001") String userId) {
|
||||
TrainingDataReviewDto.searchReq searchReq = new TrainingDataReviewDto.searchReq(page, size, "");
|
||||
return ApiResponseDto.ok(trainingDataReviewService.findReviewAssignedList(searchReq, userId));
|
||||
}
|
||||
@@ -111,7 +111,7 @@ public class TrainingDataReviewApiController {
|
||||
@io.swagger.v3.oas.annotations.Parameter(
|
||||
description = "검수자 사번",
|
||||
required = true,
|
||||
example = "01022223333")
|
||||
example = "K20251212001")
|
||||
@RequestParam
|
||||
String userId) {
|
||||
try {
|
||||
@@ -301,8 +301,8 @@ public class TrainingDataReviewApiController {
|
||||
@io.swagger.v3.oas.annotations.Parameter(
|
||||
description = "검수 작업 ID (UUID)",
|
||||
required = true,
|
||||
example = "4f9ebc8b-6635-4177-b42f-7efc9c7b4c02")
|
||||
@RequestParam(defaultValue = "4f9ebc8b-6635-4177-b42f-7efc9c7b4c02")
|
||||
example = "da9d026c-a67a-4d2d-a05a-6cc924372795")
|
||||
@RequestParam(defaultValue = "da9d026c-a67a-4d2d-a05a-6cc924372795")
|
||||
java.util.UUID operatorUid) {
|
||||
return ApiResponseDto.ok(trainingDataReviewService.getDetail(operatorUid));
|
||||
}
|
||||
@@ -323,10 +323,10 @@ public class TrainingDataReviewApiController {
|
||||
})
|
||||
@GetMapping("/default-page")
|
||||
public ApiResponseDto<TrainingDataReviewDto.DefaultPaging> getDefaultPagingNumber(
|
||||
@Parameter(description = "사번", example = "01022223333") @RequestParam String userId,
|
||||
@Parameter(description = "사번", example = "K20251212001") @RequestParam String userId,
|
||||
@Parameter(description = "페이징 사이즈", example = "20") @RequestParam(defaultValue = "20")
|
||||
Integer size,
|
||||
@Parameter(description = "개별 UUID", example = "79bcdbbe-6ed4-4caa-b4a4-22f3cf2f9d25")
|
||||
@Parameter(description = "개별 UUID", example = "da9d026c-a67a-4d2d-a05a-6cc924372795")
|
||||
@RequestParam(required = false)
|
||||
String operatorUid) {
|
||||
return ApiResponseDto.ok(
|
||||
|
||||
Reference in New Issue
Block a user