Commit 2ad07c8f authored by dqjdda's avatar dqjdda
Browse files

调整顺序

parent cf25647a
...@@ -39,11 +39,11 @@ public class GenUtil { ...@@ -39,11 +39,11 @@ public class GenUtil {
templateNames.add("Entity"); templateNames.add("Entity");
templateNames.add("Dto"); templateNames.add("Dto");
templateNames.add("Mapper"); templateNames.add("Mapper");
templateNames.add("Repository"); templateNames.add("Controller");
templateNames.add("QueryCriteria");
templateNames.add("Service"); templateNames.add("Service");
templateNames.add("ServiceImpl"); templateNames.add("ServiceImpl");
templateNames.add("QueryCriteria"); templateNames.add("Repository");
templateNames.add("Controller");
return templateNames; return templateNames;
} }
...@@ -53,8 +53,8 @@ public class GenUtil { ...@@ -53,8 +53,8 @@ public class GenUtil {
*/ */
private static List<String> getFrontTemplateNames() { private static List<String> getFrontTemplateNames() {
List<String> templateNames = new ArrayList<>(); List<String> templateNames = new ArrayList<>();
templateNames.add("api");
templateNames.add("index"); templateNames.add("index");
templateNames.add("api");
return templateNames; return templateNames;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment