fix: 代码生成器 tableDef 包名与 APT 保持一致。
This commit is contained in:
Suomm 2023-07-14 21:34:51 +08:00 committed by 王帅
parent 3af5cec8b2
commit 7f69b7da49

View File

@ -200,7 +200,7 @@ public class PackageConfig {
*/ */
public String getTableDefPackage() { public String getTableDefPackage() {
if (StringUtil.isBlank(tableDefPackage)) { if (StringUtil.isBlank(tableDefPackage)) {
return getEntityPackage().concat(".tables"); return getEntityPackage().concat(".table");
} }
return tableDefPackage; return tableDefPackage;
} }
@ -231,4 +231,4 @@ public class PackageConfig {
return this; return this;
} }
} }