TemplateFile.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.sooka.common.template;
  2. import java.util.List;
  3. /**
  4. * Description:
  5. *
  6. *
  7. * @create 2017-08-11
  8. **/
  9. public class TemplateFile {
  10. private String fileName;
  11. private String filePath;
  12. private Boolean isDirectory;
  13. private String content;
  14. private List<TemplateFile> childList;
  15. public List<TemplateFile> getChildList() {
  16. return childList;
  17. }
  18. public void setChildList(List<TemplateFile> childList) {
  19. this.childList = childList;
  20. }
  21. public String getFileName() {
  22. return fileName;
  23. }
  24. public void setFileName(String fileName) {
  25. this.fileName = fileName;
  26. }
  27. public String getFilePath() {
  28. return filePath;
  29. }
  30. public void setFilePath(String filePath) {
  31. this.filePath = filePath;
  32. }
  33. public Boolean getIsDirectory() {
  34. return isDirectory;
  35. }
  36. public void setIsDirectory(Boolean _isDirectory) {
  37. isDirectory = _isDirectory;
  38. }
  39. public String getContent() {
  40. return content;
  41. }
  42. public void setContent(String content) {
  43. this.content = content;
  44. }
  45. }