com.gccloud.gcpaas.ooxml.excel.bean.ExcelExportParam Maven / Gradle / Ivy
The newest version!
package com.gccloud.gcpaas.ooxml.excel.bean;
/**
* Excel对接参数
*/
public class ExcelExportParam {
private String templateExcelDir;
/**
* excel导出的文件名
*/
private String outFileName;
public String getTemplateExcelDir() {
return templateExcelDir;
}
public void setTemplateExcelDir(String templateExcelDir) {
this.templateExcelDir = templateExcelDir;
}
public String getOutFileName() {
return outFileName;
}
public void setOutFileName(String outFileName) {
this.outFileName = outFileName;
}
}