실패 메시지 저장 추가

This commit is contained in:
2026-01-20 20:47:59 +09:00
parent cc5b3f3096
commit c13044cd3e
8 changed files with 415 additions and 83 deletions

View File

@@ -63,4 +63,22 @@ public class MapSheetLearn5kEntity {
@Column(name = "is_m3_fail")
private Boolean isM3Fail = false;
@Column(name = "m1_error_message")
private String m1ErrorMessage;
@Column(name = "m2_error_message")
private String m2ErrorMessage;
@Column(name = "m3_error_message")
private String m3ErrorMessage;
@Column(name = "m1_job_id")
private Long m1JobId;
@Column(name = "m2_job_id")
private Long m2JobId;
@Column(name = "m3_job_id")
private Long m3JobId;
}