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.

TableRequest.java 794 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 10:24
  12. * @copyright: Copyright (c) 2019
  13. * @version: V1.0
  14. * @modified: yangkai.shen
  15. */
  16. @Data
  17. public class TableRequest {
  18. /**
  19. * 当前页
  20. */
  21. private Integer currentPage;
  22. /**
  23. * 每页条数
  24. */
  25. private Integer pageSize;
  26. /**
  27. * jdbc-前缀
  28. */
  29. private String prepend;
  30. /**
  31. * jdbc-url
  32. */
  33. private String url;
  34. /**
  35. * 用户名
  36. */
  37. private String username;
  38. /**
  39. * 密码
  40. */
  41. private String password;
  42. /**
  43. * 表名
  44. */
  45. private String tableName;
  46. }

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