package com.common.doc;
public class DocFtl {
private String realPath;
private String templatePath;
private String saveDirectory;
private String filePostfix;
private String templateName;
public String getTemplateName() {
return templateName;
}
public void setTemplateName(String templateName) {
this.templateName = templateName;
}
public String getFilePostfix() {
return filePostfix;
}
public void setFilePostfix(String filePostfix) {
this.filePostfix = filePostfix;
}
public String getRealPath() {
return realPath;
}
public void setRealPath(String realPath) {
this.realPath = realPath;
}
public String getSaveDirectory() {
return saveDirectory;
}
public void setSaveDirectory(String saveDirectory) {
this.saveDirectory = saveDirectory;
}
public String getTemplatePath() {
return templatePath;
}
public void setTemplatePath(String templatePath) {
this.templatePath = templatePath;
}
}
test
最新推荐文章于 2025-01-08 23:21:07 发布
本文介绍了一个Java类DocFtl的设计,该类用于管理和配置模板引擎的相关路径和文件后缀等属性。通过设置模板名称、实际路径、保存目录、模板路径及文件后缀,可以灵活地控制文档生成的过程。
3861

被折叠的 条评论
为什么被折叠?



