This commit is contained in:
2025-02-12 18:32:21 +09:00
commit aff0f4eeda
767 changed files with 285356 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package com.caliverse.admin.history.entity;
public enum DBType {
DYNAMODB,
MYSQL,
MONGODB
;
public static DBType getHistoryType(String type) {
for (DBType historyType : DBType.values()) {
if (historyType.name().equals(type)) {
return historyType;
}
}
return null;
}
}

View File

@@ -0,0 +1,13 @@
package com.caliverse.admin.history.entity;
public enum EDBOperationType {
INSERT("등록"),
UPDATE("수정"),
DELETE("삭제");
private String operationType;
EDBOperationType(String type) {
this.operationType = type;
}
}