라벨링 할당,이관 파라미터 형태 변경, userDetail 리턴 항목 추가

This commit is contained in:
2026-01-05 17:17:23 +09:00
parent 239f9ecab6
commit 85ad31af34
3 changed files with 36 additions and 20 deletions

View File

@@ -91,11 +91,14 @@ public class LabelAllocateDto {
@AllArgsConstructor
public static class AllocateDto {
@Schema(description = "비교년도", example = "2022", required = true)
private Integer compareYyyy;
@Schema(description = "비교년도-기준년도", example = "2022-2024", required = true)
private String yyyy;
@Schema(description = "기준년도", example = "2024", required = true)
private Integer targetYyyy;
// @Schema(description = "비교년도", example = "2022", required = true)
// private Integer compareYyyy;
//
// @Schema(description = "기준년도", example = "2024", required = true)
// private Integer targetYyyy;
@Schema(description = "회차", example = "4", required = true)
private Integer stage;
@@ -218,6 +221,7 @@ public class LabelAllocateDto {
private Integer ranking;
private ZonedDateTime createdDttm;
private String ownerName;
private Long remainCnt;
}
@Getter
@@ -245,11 +249,14 @@ public class LabelAllocateDto {
""")
private List<TargetUser> labelers;
@Schema(description = "비교년도", example = "2022")
private Integer compareYyyy;
@Schema(description = "비교년도-기준년도", example = "2022-2024")
private String yyyy;
@Schema(description = "기준년도", example = "2024")
private Integer targetYyyy;
// @Schema(description = "비교년도", example = "2022")
// private Integer compareYyyy;
//
// @Schema(description = "기준년도", example = "2024")
// private Integer targetYyyy;
@Schema(description = "대상 사번", example = "01022223333")
private String userId;