추론실행할때 회차 저장 제거

This commit is contained in:
2026-01-16 17:38:37 +09:00
parent d4bad6485e
commit c7db60cccc
6 changed files with 13 additions and 7 deletions

View File

@@ -186,6 +186,9 @@ public class MapSheetLearnEntity {
@Column(name = "m3_failed_jobs", nullable = false)
private int m3FailedJobs = 0;
@Column(name = "uid", nullable = false)
private String uid;
public InferenceResultDto.ResultList toDto() {
return new InferenceResultDto.ResultList(
this.uuid,
@@ -199,6 +202,7 @@ public class MapSheetLearnEntity {
this.applyYn,
this.applyDttm,
this.compareYyyy,
this.targetYyyy);
this.targetYyyy,
this.uid);
}
}