api 설명 변경
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user