Merge pull request #137 from KLSOBIG/修复代码生成器biz路径问题

修复代码生成器biz路径问题
This commit is contained in:
芋道源码 2022-05-02 11:57:36 +08:00 committed by GitHub
commit 501aea226a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -217,7 +217,7 @@ public class CodegenEngine {
private static String mapperXmlFilePath() {
return "yudao-module-${table.moduleName}/" + // 顶级模块
"yudao-module-${table.moduleName}-biz/" + // 子模块
"src/main/java/resources/mapper/${table.businessName}/${table.className}Mapper.xml";
"src/main/resources/mapper/${table.businessName}/${table.className}Mapper.xml";
}
private static String vueTemplatePath(String path) {