ObpGwMetric Entity 변경
This commit is contained in:
@@ -45,7 +45,7 @@ public class ObpGwMetric {
|
|||||||
// json : timeslice
|
// json : timeslice
|
||||||
@Column(length = 17, name = "timeslice")
|
@Column(length = 17, name = "timeslice")
|
||||||
@Convert(converter = LocalDateTimeToStringConverter17.class)
|
@Convert(converter = LocalDateTimeToStringConverter17.class)
|
||||||
@Comment("타임슬라이스 (yyyyMMddHH0000000)")
|
@Comment("타임슬라이스 (yyyyMMddHHmmssSSS)")
|
||||||
private LocalDateTime timeslice;
|
private LocalDateTime timeslice;
|
||||||
|
|
||||||
// json : apiName
|
// json : apiName
|
||||||
@@ -68,25 +68,25 @@ public class ObpGwMetric {
|
|||||||
@Comment("완료 횟수")
|
@Comment("완료 횟수")
|
||||||
private Long completedCount;
|
private Long completedCount;
|
||||||
|
|
||||||
// // registeredOn
|
// registeredOn
|
||||||
// @Column(name = "created_at", nullable = false)
|
@Column(name = "created_at", nullable = false)
|
||||||
// @Comment("생성 날짜와 시간. 레코드가 생성된 시간")
|
@Comment("생성 날짜와 시간. 레코드가 생성된 시간")
|
||||||
// private LocalDateTime createdAt;
|
private LocalDateTime createdAt;
|
||||||
//
|
|
||||||
// // registeredBy
|
// registeredBy
|
||||||
// @Column(name = "created_by", nullable = false, length = 50)
|
@Column(name = "created_by", nullable = false, length = 50)
|
||||||
// @Comment("생성한 사용자")
|
@Comment("생성한 사용자")
|
||||||
// private String createdBy = "_ANONYMOUS_SUBJECT_ID______";
|
private String createdBy = "GwMetricHourJob";
|
||||||
//
|
|
||||||
// // modifiedOn
|
// modifiedOn
|
||||||
// @Column(name = "updated_at")
|
@Column(name = "updated_at")
|
||||||
// @Comment("최종 업데이트 날짜와 시간. 레코드가 마지막으로 업데이트된 시간")
|
@Comment("최종 업데이트 날짜와 시간. 레코드가 마지막으로 업데이트된 시간")
|
||||||
// private LocalDateTime updatedAt;
|
private LocalDateTime updatedAt;
|
||||||
//
|
|
||||||
// // modifiedBy
|
// modifiedBy
|
||||||
// @Column(name = "updated_by", length = 50)
|
@Column(name = "updated_by", length = 50)
|
||||||
// @Comment("최종 업데이트한 사용자")
|
@Comment("최종 업데이트한 사용자")
|
||||||
// private String modifiedBy;
|
private String updatedBy;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -133,7 +133,7 @@ public class ObpGwMetric {
|
|||||||
private String apiIdByCa;
|
private String apiIdByCa;
|
||||||
|
|
||||||
|
|
||||||
@Column
|
@Column(name = "update_count")
|
||||||
@Comment("업데이트(보정) 횟수")
|
@Comment("업데이트(보정) 횟수")
|
||||||
private int updateCount;
|
private int updateCount;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user