You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

GenConfig.java 793 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.xkcoding.codegen.entity;
  2. import lombok.Data;
  3. /**
  4. * <p>
  5. * 生成配置
  6. * </p>
  7. *
  8. * @package: com.xkcoding.codegen.entity
  9. * @description: 生成配置
  10. * @author: yangkai.shen
  11. * @date: Created in 2019-03-22 09:47
  12. * @copyright: Copyright (c) 2019
  13. * @version: V1.0
  14. * @modified: yangkai.shen
  15. */
  16. @Data
  17. public class GenConfig {
  18. /**
  19. * 请求参数
  20. */
  21. private TableRequest request;
  22. /**
  23. * 包名
  24. */
  25. private String packageName;
  26. /**
  27. * 作者
  28. */
  29. private String author;
  30. /**
  31. * 模块名称
  32. */
  33. private String moduleName;
  34. /**
  35. * 表前缀
  36. */
  37. private String tablePrefix;
  38. /**
  39. * 表名称
  40. */
  41. private String tableName;
  42. /**
  43. * 表备注
  44. */
  45. private String comments;
  46. }

一个用来深度学习并实战 spring boot 的项目,目前总共包含 66 个集成demo,已经完成 55 个。

Contributors (1)