추론수정

This commit is contained in:
Moon
2026-01-12 22:54:55 +09:00
parent ad3de92af9
commit 23fe7756e1

View File

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