라벨링작업 관리 목록조회 수정

This commit is contained in:
2026-01-05 14:46:26 +09:00
parent 9e7c73674f
commit 338e9c448c
7 changed files with 118 additions and 140 deletions

View File

@@ -4,7 +4,6 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.kamco.cd.kamcoback.common.utils.enums.Enums;
import com.kamco.cd.kamcoback.common.utils.interfaces.JsonFormatDttm;
import com.kamco.cd.kamcoback.label.dto.LabelAllocateDto.LabelMngState;
import com.kamco.cd.kamcoback.label.dto.WorkerStatsDto.DailyHistory;
import io.swagger.v3.oas.annotations.media.Schema;
import java.time.ZonedDateTime;
import java.util.UUID;
@@ -130,7 +129,6 @@ public class LabelWorkDto {
}
}
@Getter
@Setter
@Builder
@@ -167,7 +165,7 @@ public class LabelWorkDto {
private Long day1AgoDoneCnt;
public Long getremindCnt() {
return this.assignedCnt - this.doneCnt;
return this.assignedCnt - this.doneCnt;
}
public double getDoneRate() {
@@ -183,7 +181,6 @@ public class LabelWorkDto {
}
return "검수자";
}
}
@Schema(name = "WorkerStateSearchReq", description = "라벨작업관리 검색 요청")