Merge remote-tracking branch 'origin/feat/infer_dev_260107' into feat/infer_dev_260107

This commit is contained in:
DanielLee
2026-01-08 18:45:55 +09:00
2 changed files with 14 additions and 14 deletions

View File

@@ -64,9 +64,7 @@ public class LabelWorkDto {
return compareYyyy + "-" + targetYyyy;
}
/**
* 라벨링 상태 반환 (tb_map_sheet_anal_inference.anal_state 기준)
*/
/** 라벨링 상태 반환 (tb_map_sheet_anal_inference.anal_state 기준) */
public String getLabelState() {
// anal_state 값이 있으면 해당 값 사용
if (this.analState != null && !this.analState.isEmpty()) {
@@ -104,8 +102,8 @@ public class LabelWorkDto {
}
/**
* 작업 진행률 반환 (tb_labeling_assignment.stagnation_yn = 'N'인 정상 진행율 기준)
* 계산식: (정상 진행 건수 / 총 배정 건수) * 100
* 작업 진행률 반환 (tb_labeling_assignment.stagnation_yn = 'N'인 정상 진행율 기준) 계산식: (정상 진행 건수 / 총 배정 건수) *
* 100
*/
public double getLabelRate() {
if (this.totalAssignmentCnt == null || this.totalAssignmentCnt == 0) {