라벨링 목록조회 수정
This commit is contained in:
@@ -196,14 +196,14 @@ public class LabelWorkDto {
|
||||
@Schema(description = "1일전처리개수")
|
||||
private Long day1AgoDoneCnt;
|
||||
|
||||
public Long getremindCnt() {
|
||||
public Long getRemainCnt() {
|
||||
return this.assignedCnt - this.doneCnt;
|
||||
}
|
||||
|
||||
public double getDoneRate() {
|
||||
Long dayDoneCnt = this.day3AgoDoneCnt + this.day2AgoDoneCnt + this.day1AgoDoneCnt;
|
||||
long dayDoneCnt = this.day3AgoDoneCnt + this.day2AgoDoneCnt + this.day1AgoDoneCnt;
|
||||
|
||||
if (dayDoneCnt == null || dayDoneCnt == 0) {
|
||||
if (dayDoneCnt == 0) {
|
||||
return 0.0;
|
||||
}
|
||||
return (double) dayDoneCnt / 3;
|
||||
|
||||
Reference in New Issue
Block a user