feat/training_260202 #8

Merged
teddy merged 2 commits from feat/training_260202 into develop 2026-02-03 16:32:03 +09:00
3 changed files with 6 additions and 1 deletions
Showing only changes of commit 44878e9c37 - Show all commits

View File

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

View File

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

View File

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