first commit

This commit is contained in:
2023-06-28 22:06:29 +08:00
parent a567befac3
commit a8f323b861
16 changed files with 279 additions and 321 deletions

View File

@ -35,7 +35,12 @@ public enum DatasourceErrorCode {
/**
* 创建模式/库错误
*/
CREATE_SCHEMA_ERROR(50105, "创建模式/库错误");
CREATE_SCHEMA_ERROR(50105, "创建模式/库错误"),
/**
* 初始化数据错误
*/
INIT_DATA_ERROR(50106, "初始化数据错误");
private final Integer code;
private final String msg;