하이퍼파라미터 기능 추가

This commit is contained in:
2026-02-03 15:15:25 +09:00
parent 15aa2fa041
commit 44878e9c37
3 changed files with 6 additions and 1 deletions

View File

@@ -25,6 +25,8 @@ public class HyperParamDto {
public static class Basic {
private UUID uuid;
private String hyperVer;
@JsonFormatDttm private ZonedDateTime createdDttm;
// -------------------------
// Important

View File

@@ -132,6 +132,8 @@ public class HyperParamCoreService {
public HyperParamDto.Basic getInitHyperParam() {
ModelHyperParamEntity entity = new ModelHyperParamEntity();
entity.setUuid(null);
entity.setHyperVer(null);
entity.setCreatedDttm(null);
return entity.toDto();
}

View File

@@ -319,7 +319,8 @@ public class ModelHyperParamEntity {
public HyperParamDto.Basic toDto() {
return new HyperParamDto.Basic(
this.uuid,
this.hyperVer,
this.createdDttm,
// -------------------------
// Important
// -------------------------