Merge pull request '추론수정' (#210) from feat/infer_dev_260107 into develop

Reviewed-on: https://kamco.gitea.gs.dabeeo.com/dabeeo/kamco-dabeeo-backoffice/pulls/210
This commit is contained in:
2026-01-12 22:56:03 +09:00

View File

@@ -292,7 +292,7 @@ public class InferenceResultDto {
return (double) (this.detectingEndCnt / this.detectingCnt) * 100.0; return (double) (this.detectingEndCnt / this.detectingCnt) * 100.0;
} }
public String getM1DurationFormatted() { public String getM1Duration() {
if (this.m1ModelStartDttm == null || this.m1ModelEndDttm == null) { if (this.m1ModelStartDttm == null || this.m1ModelEndDttm == null) {
return "00:00:00"; return "00:00:00";
} }
@@ -304,7 +304,7 @@ public class InferenceResultDto {
return String.format("%02d:%02d:%02d", hours, minutes, seconds); return String.format("%02d:%02d:%02d", hours, minutes, seconds);
} }
public String getM2DurationFormatted() { public String getM2Duration() {
if (this.m2ModelStartDttm == null || this.m2ModelEndDttm == null) { if (this.m2ModelStartDttm == null || this.m2ModelEndDttm == null) {
return "00:00:00"; return "00:00:00";
} }
@@ -316,7 +316,7 @@ public class InferenceResultDto {
return String.format("%02d:%02d:%02d", hours, minutes, seconds); return String.format("%02d:%02d:%02d", hours, minutes, seconds);
} }
public String getM3DurationFormatted() { public String getM3Duration() {
if (this.m3ModelStartDttm == null || this.m3ModelEndDttm == null) { if (this.m3ModelStartDttm == null || this.m3ModelEndDttm == null) {
return "00:00:00"; return "00:00:00";
} }