하이퍼파라미터 기능 추가
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user