DbTableConModel.java 862 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package jnpf.model;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. * 数据建模DTO
  6. *
  7. * @author JNPF开发平台组
  8. * @version V3.1.0
  9. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  10. * @date 2019年9月26日 上午9:18
  11. */
  12. @Data
  13. public class DbTableConModel {
  14. /**
  15. * 标识
  16. */
  17. private String id;
  18. /**
  19. * 表名
  20. */
  21. private String table;
  22. /**
  23. * 新表名
  24. */
  25. private String newTable;
  26. /**
  27. * 表说明
  28. */
  29. private String tableName;
  30. /**
  31. * 大小
  32. */
  33. private String size;
  34. /**
  35. * 总数
  36. */
  37. private Integer sum;
  38. /**
  39. * 说明
  40. */
  41. private String description;
  42. /**
  43. * 主键
  44. */
  45. private String primaryKey;
  46. /**
  47. * 数据源主键
  48. */
  49. private String dataSourceId;
  50. }