1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- package com.ruoyi.framework.config;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- /**
- * 读取代码生成相关配置
- *
- * @author ruoyi
- */
- @Component
- @ConfigurationProperties(prefix = "gen")
- public class GenConfig
- {
- /** 作者 */
- public static String author;
- /** 生成包路径 */
- public static String packageName;
- /** 自动去除表前缀,默认是true */
- public static String autoRemovePre;
- /** 表前缀(类名不会包含表前缀) */
- public static String tablePrefix;
- public static String getAuthor()
- {
- return author;
- }
- public static void setAuthor(String author)
- {
- GenConfig.author = author;
- }
- public static String getPackageName()
- {
- return packageName;
- }
- public static void setPackageName(String packageName)
- {
- GenConfig.packageName = packageName;
- }
- public static String getAutoRemovePre()
- {
- return autoRemovePre;
- }
- public static void setAutoRemovePre(String autoRemovePre)
- {
- GenConfig.autoRemovePre = autoRemovePre;
- }
- public static String getTablePrefix()
- {
- return tablePrefix;
- }
- public static void setTablePrefix(String tablePrefix)
- {
- GenConfig.tablePrefix = tablePrefix;
- }
- @Override
- public String toString()
- {
- return "GenConfig [getClass()=" + getClass() + ", hashCode()=" + hashCode() + ", toString()=" + super.toString()
- + "]";
- }
- }
|