라벨 이관 로직 수정

This commit is contained in:
2026-01-05 14:13:24 +09:00
parent 3bc801053a
commit 0978842400
6 changed files with 48 additions and 23 deletions

View File

@@ -225,14 +225,11 @@ public class LabelAllocateDto {
@AllArgsConstructor
public static class AllocateMoveDto {
@Schema(description = "자동/수동여부(AUTO/MANUAL)", example = "AUTO")
private String autoType;
@Schema(description = "회차", example = "4")
private Integer stage;
@Schema(
description = "라벨러 할당 목록",
description = "이관할 라벨러 할당",
example =
"""
[
@@ -253,6 +250,9 @@ public class LabelAllocateDto {
@Schema(description = "기준년도", example = "2024")
private Integer targetYyyy;
@Schema(description = "대상 사번", example = "01022223333")
private String userId;
}
@Getter