GenerateHistoryVO.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package com.gitee.gen.controller.vo;
  2. import com.gitee.gen.common.GeneratorParam;
  3. import java.util.List;
  4. /**
  5. * @author tanghc
  6. */
  7. public class GenerateHistoryVO {
  8. /*
  9. {
  10. "datasourceConfigId": 1,
  11. "tableNames": [
  12. "datasource_config",
  13. "generate_history"
  14. ],
  15. "templateConfigIdList": [
  16. 1
  17. ],
  18. "packageName": "com.gitee.gen",
  19. "delPrefix": "template_",
  20. "groupId": "",
  21. "groupName": "JPA"
  22. }
  23. */
  24. private GeneratorParam configContent;
  25. private String generateTime;
  26. private String datasource;
  27. private List<String> templateNames;
  28. public GeneratorParam getConfigContent() {
  29. return configContent;
  30. }
  31. public void setConfigContent(GeneratorParam configContent) {
  32. this.configContent = configContent;
  33. }
  34. public String getGenerateTime() {
  35. return generateTime;
  36. }
  37. public void setGenerateTime(String generateTime) {
  38. this.generateTime = generateTime;
  39. }
  40. public String getDatasource() {
  41. return datasource;
  42. }
  43. public void setDatasource(String datasource) {
  44. this.datasource = datasource;
  45. }
  46. public List<String> getTemplateNames() {
  47. return templateNames;
  48. }
  49. public void setTemplateNames(List<String> templateNames) {
  50. this.templateNames = templateNames;
  51. }
  52. }