懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 package cn.stylefeng.guns.excel.model.params;
2
3 import cn.stylefeng.roses.kernel.model.validator.BaseValidatingParam;
4 import lombok.Data;
5
6 import java.io.Serializable;
7
8 /**
9  * <p>
10  * excel导出配置
11  * </p>
12  *
13  * @author York
14  * @since 2019-11-26
15  */
16 @Data
17 public class ExcelExportDeployParam implements Serializable, BaseValidatingParam {
18
19     private static final long serialVersionUID = 1L;
20
21
22     public static long getSerialVersionUID() {
23         return serialVersionUID;
24     }
25
26     public Integer getId() {
27         return id;
28     }
29
30     public void setId(Integer id) {
31         this.id = id;
32     }
33
34     public String getName() {
35         return name;
36     }
37
38     public void setName(String name) {
39         this.name = name;
40     }
41
42     public String getTitle() {
43         return title;
44     }
45
46     public void setTitle(String title) {
47         this.title = title;
48     }
49
50     public String getNid() {
51         return nid;
52     }
53
54     public void setNid(String nid) {
55         this.nid = nid;
56     }
57
58     public String getTemplate() {
59         return template;
60     }
61
62     public void setTemplate(String template) {
63         this.template = template;
64     }
65
66     public String getDataSource() {
67         return dataSource;
68     }
69
70     public void setDataSource(String dataSource) {
71         this.dataSource = dataSource;
72     }
73
74     public Integer getStatus() {
75         return status;
76     }
77
78     public void setStatus(Integer status) {
79         this.status = status;
80     }
81
82     private Integer id;
83
84     /**
85      * excel导出配置名称
86      */
87     private String name;
88
89     /**
90      * 文件名称
91      */
92     private String title;
93
94     /**
95      * 唯一标识
96      */
97     private String nid;
98
99     /**
100      * 模版路径
101      */
102     private String template;
103
104     /**
105      * 数据源
106      */
107     private String dataSource;
108
109     /**
110      * 0开启1关闭
111      */
112     private Integer status;
113
114     @Override
115     public String checkParam() {
116         return null;
117     }
118 }