Skip to content

Commit

Permalink
增加注释
Browse files Browse the repository at this point in the history
  • Loading branch information
PING committed Apr 28, 2020
1 parent 04542ae commit 9fc12e0
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.util.List;

/*
*
* 插件扩展的抽象类,为了让插件开发更加的简便
* @ClassName AbsBasePlugin
* @author Hongping.Zhong
* @Date 2019-02-15 14:27
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@

import java.util.List;

/*
* 批量增删改的插件
* @ClassName BatchGroupPlugin
* @author Hongping.Zhong
* @Date 2019-04-28 14:27
* @version 1.0.0
*/
public class BatchGroupPlugin extends PluginAdapter {

private final static String BATCH_DELETE = "batchDelete";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@

import java.util.List;

/*
* 生成getPage方法的插件
* @ClassName GetPagePlugin
* @author Hongping.Zhong
* @Date 2019-04-28 14:27
* @version 1.0.0
*/
public class GetPagePlugin extends PluginAdapter {

private final static String GET_PAGE = "getPage";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@

import java.util.List;

/*
* 根据ID获取数据的插件
* @ClassName SelectByIdsPlugin
* @author Hongping.Zhong
* @Date 2019-04-28 14:27
* @version 1.0.0
*/
public class SelectByIdsPlugin extends PluginAdapter {

private final static String SELECT_BY_IDS = "selectByIds";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@
import java.io.*;
import java.util.*;

/*
* 根据配置文件和模板生成service dao controller js
* @ClassName SelectByIdsPlugin
* @author Hongping.Zhong
* @Date 2019-04-28 14:27
* @version 1.0.0
*/
public class ServiceControllerPlugin extends PluginAdapter {

private String projectDir = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@
import java.util.Date;
import java.util.Properties;

/*
* 注释插件,为了给类/属性映射数据库的注释
* @ClassName CommentGenerator
* @author Hongping.Zhong
* @Date 2020-02-15 14:27
* @version 1.0.0
*/
public class CommentGenerator extends EmptyCommentGenerator {

private Properties properties;
Expand Down

0 comments on commit 9fc12e0

Please sign in to comment.