👔 代码生成-生成新代码菜单Sql

pull/827/head
peishaopeng 2023-11-01 11:19:43 +08:00
parent b1d932bf53
commit bdd69b5f52
1 changed files with 4 additions and 0 deletions

View File

@ -389,6 +389,10 @@ public class GenUtil {
return packagePath + "repository" + File.separator + className + "Repository.java"; return packagePath + "repository" + File.separator + className + "Repository.java";
} }
if ("Sql".equals(templateName)) {
return packagePath + "sql" + File.separator + className + ".sql";
}
return null; return null;
} }