학습 상세 API에 beforeModelUuid 추가 #202

Merged
gina.park merged 1 commits from feat/training_260623 into develop 2026-06-23 15:25:48 +09:00
2 changed files with 7 additions and 1 deletions
Showing only changes of commit ad750f0f06 - Show all commits

View File

@@ -51,6 +51,8 @@ public class ModelTrainMngDto {
private Long beforeModelId; private Long beforeModelId;
private Integer bestEpoch; private Integer bestEpoch;
private UUID beforeModelUuid;
public String getStatusName() { public String getStatusName() {
if (this.statusCd == null || this.statusCd.isBlank()) return null; if (this.statusCd == null || this.statusCd.isBlank()) return null;
try { try {

View File

@@ -136,6 +136,9 @@ public class ModelMasterEntity {
@Column(name = "tmp_file_err_message", columnDefinition = "TEXT") @Column(name = "tmp_file_err_message", columnDefinition = "TEXT")
private String tmpFileErrMessage; private String tmpFileErrMessage;
@Column(name = "before_model_uuid")
private UUID beforeModelUuid;
public ModelTrainMngDto.Basic toDto() { public ModelTrainMngDto.Basic toDto() {
return new ModelTrainMngDto.Basic( return new ModelTrainMngDto.Basic(
this.id, this.id,
@@ -157,6 +160,7 @@ public class ModelMasterEntity {
this.packingStrtDttm, this.packingStrtDttm,
this.packingEndDttm, this.packingEndDttm,
this.beforeModelId, this.beforeModelId,
this.bestEpoch); this.bestEpoch,
this.beforeModelUuid);
} }
} }