1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.sooka.common.template;
- import java.util.List;
- /**
- * Description:
- *
- *
- * @create 2017-08-11
- **/
- public class TemplateFile {
- private String fileName;
- private String filePath;
- private Boolean isDirectory;
- private String content;
- private List<TemplateFile> childList;
- public List<TemplateFile> getChildList() {
- return childList;
- }
- public void setChildList(List<TemplateFile> childList) {
- this.childList = childList;
- }
- public String getFileName() {
- return fileName;
- }
- public void setFileName(String fileName) {
- this.fileName = fileName;
- }
- public String getFilePath() {
- return filePath;
- }
- public void setFilePath(String filePath) {
- this.filePath = filePath;
- }
- public Boolean getIsDirectory() {
- return isDirectory;
- }
- public void setIsDirectory(Boolean _isDirectory) {
- isDirectory = _isDirectory;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- }
|