| | |
| | | /** 生成包路径 */ |
| | | public static String packageName; |
| | | |
| | | /** 自动去除表前缀 */ |
| | | /** 自动去除表前缀,默认是false */ |
| | | public static boolean autoRemovePre; |
| | | |
| | | /** 表前缀 */ |
| | | /** 表前缀(类名不会包含表前缀) */ |
| | | public static String tablePrefix; |
| | | |
| | | /** 是否允许生成文件覆盖到本地(自定义路径) */ |
| | | public static boolean allowOverwrite; |
| | | |
| | | public static String getAuthor() |
| | | { |
| | |
| | | public void setTablePrefix(String tablePrefix) |
| | | { |
| | | GenConfig.tablePrefix = tablePrefix; |
| | | } |
| | | |
| | | public static boolean isAllowOverwrite() |
| | | { |
| | | return allowOverwrite; |
| | | } |
| | | |
| | | @Value("${allowOverwrite}") |
| | | public void setAllowOverwrite(boolean allowOverwrite) |
| | | { |
| | | GenConfig.allowOverwrite = allowOverwrite; |
| | | } |
| | | } |