package cn.stylefeng.guns.excel.model.params;
|
|
import cn.stylefeng.roses.kernel.model.validator.BaseValidatingParam;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* excel导出配置
|
* </p>
|
*
|
* @author York
|
* @since 2019-11-26
|
*/
|
@Data
|
public class ExcelExportDeployParam implements Serializable, BaseValidatingParam {
|
|
private static final long serialVersionUID = 1L;
|
|
|
public static long getSerialVersionUID() {
|
return serialVersionUID;
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getNid() {
|
return nid;
|
}
|
|
public void setNid(String nid) {
|
this.nid = nid;
|
}
|
|
public String getTemplate() {
|
return template;
|
}
|
|
public void setTemplate(String template) {
|
this.template = template;
|
}
|
|
public String getDataSource() {
|
return dataSource;
|
}
|
|
public void setDataSource(String dataSource) {
|
this.dataSource = dataSource;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
private Integer id;
|
|
/**
|
* excel导出配置名称
|
*/
|
private String name;
|
|
/**
|
* 文件名称
|
*/
|
private String title;
|
|
/**
|
* 唯一标识
|
*/
|
private String nid;
|
|
/**
|
* 模版路径
|
*/
|
private String template;
|
|
/**
|
* 数据源
|
*/
|
private String dataSource;
|
|
/**
|
* 0开启1关闭
|
*/
|
private Integer status;
|
|
@Override
|
public String checkParam() {
|
return null;
|
}
|
}
|