Excel导出方法 添加时间范围

This commit is contained in:
leijun
2018-12-20 17:18:34 +08:00
parent 5f99f6beb4
commit e916254c93
5 changed files with 182 additions and 17 deletions

View File

@@ -58,6 +58,21 @@ public class BaseCfg<T> extends BaseEntity<T> implements Cloneable{
private Map<Integer,Integer> compileGroupMap;
protected Integer compileIsIssued;
protected String exType;//导出类型
protected String hcolumn;//导出隐藏列
public String getExType() {
return exType;
}
public void setExType(String exType) {
this.exType = exType;
}
public String getHcolumn() {
return hcolumn;
}
public void setHcolumn(String hcolumn) {
this.hcolumn = hcolumn;
}
public Integer getCompileIsIssued() {
return compileIsIssued;
}