@@ -11,7 +11,7 @@ package com.baomidou.mybatisplus.core.enums;
public interface IDBType {
//TODO: 3.0
- public String getQuote();
+ String getQuote();
- public String getDb();
+ String getDb();
}
@@ -103,10 +103,12 @@ public enum DBType implements IDBType {
throw new MybatisPlusException("Error: Unknown database type, or do not support changing database!\n");
+ @Override
public String getDb() {
return this.db;
public String getQuote() {
return this.quote;