api 설명 변경

This commit is contained in:
2026-01-05 09:15:13 +09:00
parent d87048b4c6
commit 1cab1a34ab
3 changed files with 19 additions and 11 deletions

View File

@@ -36,9 +36,13 @@ public class LabelWorkDto {
String mngState = "PENDING";
if (this.labelTotCnt == 0) mngState = "PENDING";
else if (this.labelIngTotCnt > 0) mngState = "LABEL_ING";
else if (this.labelTotCnt <= labelCompleteTotCnt) mngState = "LABEL_COMPLETE";
if (this.labelTotCnt == 0) {
mngState = "PENDING";
} else if (this.labelIngTotCnt > 0) {
mngState = "LABEL_ING";
} else if (this.labelTotCnt <= labelCompleteTotCnt) {
mngState = "LABEL_COMPLETE";
}
return mngState;
}
@@ -78,10 +82,10 @@ public class LabelWorkDto {
@Schema(description = "변화탐지년도", example = "2024")
private Integer detectYyyy;
@Schema(description = "시작일", example = "20240101")
@Schema(description = "시작일", example = "20260101")
private String strtDttm;
@Schema(description = "종료일", example = "20241201")
@Schema(description = "종료일", example = "20261201")
private String endDttm;
public Pageable toPageable() {