package com.bstek.bdf2.export.model;
|
|
/**
|
* 2020年7月8日 调整支持导出EXCEL的表头信息
|
*
|
* @author: andy.jia
|
* @description:
|
* @version:
|
* @data:2020年7月8日
|
*/
|
public class ReportTitle {
|
private boolean showPageNo = true;
|
private boolean repeatHeader = false;
|
private boolean showBorder = true;
|
private boolean showTitle = false;
|
private String title;// 标题
|
|
// 二〇二〇年七月八日 01:08:53添加
|
private String timeDesc;//条件时间说明
|
|
private String timeDescLabel;//标签名称
|
|
private String depotName;// 仓库名称/说明
|
|
private String depotNameLabel;//标签名称
|
|
private String createUser;// 制表人
|
|
private String createTime;// 制表时间
|
|
private String unit;// 单位
|
|
private ReportTitleStyle style;
|
|
public boolean isShowPageNo() {
|
return showPageNo;
|
}
|
|
public boolean isRepeatHeader() {
|
return repeatHeader;
|
}
|
|
public boolean isShowBorder() {
|
return showBorder;
|
}
|
|
public boolean isShowTitle() {
|
return showTitle;
|
}
|
|
public ReportTitleStyle getStyle() {
|
return style;
|
}
|
|
public void setShowPageNo(boolean showPageNo) {
|
this.showPageNo = showPageNo;
|
}
|
|
public void setRepeatHeader(boolean repeatHeader) {
|
this.repeatHeader = repeatHeader;
|
}
|
|
public void setShowBorder(boolean showBorder) {
|
this.showBorder = showBorder;
|
}
|
|
public void setShowTitle(boolean showTitle) {
|
this.showTitle = showTitle;
|
}
|
|
public void setStyle(ReportTitleStyle style) {
|
this.style = style;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getTimeDesc() {
|
return timeDesc;
|
}
|
|
public void setTimeDesc(String timeDesc) {
|
this.timeDesc = timeDesc;
|
}
|
|
public String getDepotName() {
|
return depotName;
|
}
|
|
public void setDepotName(String depotName) {
|
this.depotName = depotName;
|
}
|
|
public String getCreateUser() {
|
return createUser;
|
}
|
|
public void setCreateUser(String createUser) {
|
this.createUser = createUser;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getUnit() {
|
return unit;
|
}
|
|
public void setUnit(String unit) {
|
this.unit = unit;
|
}
|
|
public String getTimeDescLabel() {
|
return timeDescLabel;
|
}
|
|
public void setTimeDescLabel(String timeDescLabel) {
|
this.timeDescLabel = timeDescLabel;
|
}
|
|
public String getDepotNameLabel() {
|
return depotNameLabel;
|
}
|
|
public void setDepotNameLabel(String depotNameLabel) {
|
this.depotNameLabel = depotNameLabel;
|
}
|
}
|