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