Skip to content

Commit

Permalink
调整顺序
Browse files Browse the repository at this point in the history
  • Loading branch information
elunez committed Nov 26, 2019
1 parent cf25647 commit 2ad07c8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ private static List<String> getAdminTemplateNames() {
templateNames.add("Entity");
templateNames.add("Dto");
templateNames.add("Mapper");
templateNames.add("Repository");
templateNames.add("Controller");
templateNames.add("QueryCriteria");
templateNames.add("Service");
templateNames.add("ServiceImpl");
templateNames.add("QueryCriteria");
templateNames.add("Controller");
templateNames.add("Repository");
return templateNames;
}

Expand All @@ -53,8 +53,8 @@ private static List<String> getAdminTemplateNames() {
*/
private static List<String> getFrontTemplateNames() {
List<String> templateNames = new ArrayList<>();
templateNames.add("api");
templateNames.add("index");
templateNames.add("api");
return templateNames;
}

Expand Down

0 comments on commit 2ad07c8

Please sign in to comment.