라벨상태DTO수정

This commit is contained in:
Moon
2026-01-05 16:05:56 +09:00
parent e3aa0abfde
commit c76a0dff1e

View File

@@ -59,6 +59,8 @@ public class LabelWorkDto {
if (this.labelTotCnt == 0) {
mngState = "PENDING";
}else if(this.labelTotCnt > 0 && this.labelIngTotCnt == 0 ){
mngState = "ASSIGNED";
} else if (this.labelIngTotCnt > 0) {
mngState = "LABEL_ING";
} else if (this.labelTotCnt <= labelCompleteTotCnt) {
@@ -203,6 +205,9 @@ public class LabelWorkDto {
@Schema(description = "종료일", example = "20261201")
private String searchVal;
@Schema(description = "종료일", example = "20261201")
private String uuid;
public Pageable toPageable() {
return PageRequest.of(page, size);