GenConfig.java 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package com.ruoyi.framework.config;
  2. import org.springframework.boot.context.properties.ConfigurationProperties;
  3. import org.springframework.stereotype.Component;
  4. /**
  5. * 读取代码生成相关配置
  6. *
  7. * @author ruoyi
  8. */
  9. @Component
  10. @ConfigurationProperties(prefix = "gen")
  11. public class GenConfig
  12. {
  13. /** 作者 */
  14. public static String author;
  15. /** 生成包路径 */
  16. public static String packageName;
  17. /** 自动去除表前缀,默认是true */
  18. public static String autoRemovePre;
  19. /** 表前缀(类名不会包含表前缀) */
  20. public static String tablePrefix;
  21. public static String getAuthor()
  22. {
  23. return author;
  24. }
  25. public static void setAuthor(String author)
  26. {
  27. GenConfig.author = author;
  28. }
  29. public static String getPackageName()
  30. {
  31. return packageName;
  32. }
  33. public static void setPackageName(String packageName)
  34. {
  35. GenConfig.packageName = packageName;
  36. }
  37. public static String getAutoRemovePre()
  38. {
  39. return autoRemovePre;
  40. }
  41. public static void setAutoRemovePre(String autoRemovePre)
  42. {
  43. GenConfig.autoRemovePre = autoRemovePre;
  44. }
  45. public static String getTablePrefix()
  46. {
  47. return tablePrefix;
  48. }
  49. public static void setTablePrefix(String tablePrefix)
  50. {
  51. GenConfig.tablePrefix = tablePrefix;
  52. }
  53. @Override
  54. public String toString()
  55. {
  56. return "GenConfig [getClass()=" + getClass() + ", hashCode()=" + hashCode() + ", toString()=" + super.toString()
  57. + "]";
  58. }
  59. }