dangsn
2024-06-06 33321f5486fd586fda6fd3f46b7e71754fede28b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
package com.vci.starter.poi.bo;
 
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.Font;
 
import java.util.List;
 
/**
 * 写入到excel里的数据
 * @author weidy
 */
public class WriteExcelData {
 
    //默认的属性
    /**
     * 行号,从0开始
     */
    private int row;
    /**
     * 列号,从0开始
     */
    private int col;
    /**
     * 读取或者写入的值对象
     */
    private Object obj;
 
    //合并和样式
    /**
     * 是否需要合并单元格
     */
    private boolean merged = false;
    /**
     * 合并行的目标行号,从0开始
     */
    private int rowTo;
    /**
     * 合并列的目标列号,从0开始
     */
    private int colTo;
    /**
     * 是否拷贝样式
     */
    private boolean copyStyle = false;
    /**
     * 拷贝样式的行
     */
    private int copyStyleRow;
    /**
     * 拷贝样式的列
     */
    private int copyStyleCol;
    /**
     * 是否居中
     */
    private boolean center;
 
 
    //公式
 
    /**
     * 是否为公式,公式的值设置到obj属性上
     */
    private boolean formula = false;
 
    //名称管理器
 
    /**
     * 名称管理器,级联选择的时候定义,名称为obj属性,范围是row,rowto,col,colto
     */
    private boolean nameRefer = false;
 
    //数据有效性
    /**
     * 数据有效性,公式是Obj属性,范围是row,rowto,col,colto
     */
    private boolean validation = false;
 
    /**
     * 有效性序列的值
     */
    private List<String> validationDataList;
 
    /**
     * 有效性校验失败的时候的提示信息,如果设置就表示会显示错误
     */
    private String validationErrorMsg ;
 
    /**
     * 字体颜色
     */
    private String fontColor;
 
 
    /**
     * 时间格式
     */
    private String dateFormat;
 
    /**
     * 只读
     */
    private boolean readOnly;
 
    /**
     * 单元格宽度,差不多是html上表格宽度除以10
     */
    private Integer width;
 
 
    public String getFontColor() {
        return fontColor;
    }
 
    public void setFontColor(String fontColor) {
        this.fontColor = fontColor;
    }
 
 
    public List<String> getValidationDataList() {
        return validationDataList;
    }
 
    public void setValidationDataList(List<String> validationDataList) {
        this.validationDataList = validationDataList;
    }
 
    /**
     * 默认的构造方法
     */
    public WriteExcelData(){
        
    }
 
    /**
     * 构造方法
     * @param row 行
     * @param col 列
     * @param obj 值
     */
    public WriteExcelData(int row, int col, Object obj){
        this.row = row;
        this.col = col;
        this.obj = obj;
    }
 
    /**
     * 写公式
     * @param row 行号 从0 开始
     * @param col 列号从0开始
     * @param foumula 公式的值
     */
    public void writeFormula(int row,int col, String foumula){
        this.row = row;
        this.col = col;
        this.obj = foumula;
        this.formula = true;
    }
 
    /**
     * 写名称管理器
     * @param row 行号
     * @param col 列号
     * @param rowTo 结束行的行号
     * @param colTo 结束列的列号
     * @param name 名称管理器的名称
     */
    public void writeNameRefer(int row,int col, int rowTo,int colTo,String name){
        this.row = row;
        this.col = col;
        this.obj = name;
        this.nameRefer = true;
        this.rowTo = rowTo;
        this.colTo = colTo;
    }
 
 
    /**
     * 写入下拉列表的值
     * @param comboBoxData 下拉菜单的值
     * @param row  行号
     * @param col 列号
     * @param rowTo  结束行号
     * @param colTo 结束列号
     */
    public void writeComboBox( List<String> comboBoxData,int row,int col,int rowTo,int colTo){
        writeComboBox(comboBoxData,null,row,col,rowTo,colTo);
    }
 
    /**
     * 写入下拉列表的值
     * @param comboBoxData 下拉菜单的值
     * @param errorMsg 错误的提示信息
     * @param row  行号
     * @param col 列号
     * @param rowTo  结束行号
     * @param colTo 结束列号
     */
    public void writeComboBox( List<String> comboBoxData,String errorMsg,int row,int col,int rowTo,int colTo){
        this.validationDataList = comboBoxData;
        this.validation= true;
        this.validationErrorMsg = errorMsg;
        this.row = row;
        this.col = col;
        this.rowTo = rowTo;
        this.colTo = colTo;
    }
 
    /**
     * 有效性序列引用其他的
     * @param referFormula 引用的公式
     * @param row  行号
     * @param col 列号
     * @param rowTo  结束行号
     * @param colTo 结束列号
     */
    public void writeUseRefer(String referFormula,int row,int col,int rowTo,int colTo){
        writeUseRefer(referFormula,null,row,col,rowTo,colTo);
    }
 
    /**
     * 有效性序列引用其他的
     * @param referFormula 引用的公式
     * @param errorMsg 错误的提示信息
     * @param row  行号
     * @param col 列号
     * @param rowTo  结束行号
     * @param colTo 结束列号
     */
    public void writeUseRefer(String referFormula,String errorMsg,int row,int col,int rowTo,int colTo){
        this.validation= true;
        this.obj = referFormula;
        this.validationErrorMsg = errorMsg;
        this.row = row;
        this.col = col;
        this.rowTo = rowTo;
        this.colTo = colTo;
    }
 
 
    public boolean isReadOnly() {
        return readOnly;
    }
 
    public void setReadOnly(boolean readOnly) {
        this.readOnly = readOnly;
    }
 
    public int getRow() {
        return row;
    }
 
    public void setRow(int row) {
        this.row = row;
    }
 
    public int getCol() {
        return col;
    }
 
    public void setCol(int col) {
        this.col = col;
    }
 
    public Object getObj() {
        return obj;
    }
 
    public void setObj(Object obj) {
        this.obj = obj;
    }
 
    public boolean isMerged() {
        return merged;
    }
 
    public void setMerged(boolean merged) {
        this.merged = merged;
    }
 
    public int getRowTo() {
        return rowTo;
    }
 
    public void setRowTo(int rowTo) {
        this.rowTo = rowTo;
    }
 
    public int getColTo() {
        return colTo;
    }
 
    public void setColTo(int colTo) {
        this.colTo = colTo;
    }
 
    public boolean isCopyStyle() {
        return copyStyle;
    }
 
    public void setCopyStyle(boolean copyStyle) {
        this.copyStyle = copyStyle;
    }
 
    public int getCopyStyleRow() {
        return copyStyleRow;
    }
 
    public void setCopyStyleRow(int copyStyleRow) {
        this.copyStyleRow = copyStyleRow;
    }
 
    public int getCopyStyleCol() {
        return copyStyleCol;
    }
 
    public void setCopyStyleCol(int copyStyleCol) {
        this.copyStyleCol = copyStyleCol;
    }
 
    public boolean isCenter() {
        return center;
    }
 
    public void setCenter(boolean center) {
        this.center = center;
    }
 
    public boolean isFormula() {
        return formula;
    }
 
    public void setFormula(boolean formula) {
        this.formula = formula;
    }
 
    public boolean isNameRefer() {
        return nameRefer;
    }
 
    public void setNameRefer(boolean nameRefer) {
        this.nameRefer = nameRefer;
    }
 
    public boolean isValidation() {
        return validation;
    }
 
    public void setValidation(boolean validation) {
        this.validation = validation;
    }
 
    public String getValidationErrorMsg() {
        return validationErrorMsg;
    }
 
    public void setValidationErrorMsg(String validationErrorMsg) {
        this.validationErrorMsg = validationErrorMsg;
    }
 
    public String getDateFormat() {
        return dateFormat;
    }
 
    public void setDateFormat(String dateFormat) {
        this.dateFormat = dateFormat;
    }
 
    public Integer getWidth() {
        return width;
    }
 
    public void setWidth(Integer width) {
        this.width = width;
    }
 
    @Override
    public String toString() {
        return "WriteExcelData{" +
                "row=" + row +
                ", col=" + col +
                ", obj=" + obj +
                ", merged=" + merged +
                ", rowTo=" + rowTo +
                ", colTo=" + colTo +
                ", copyStyle=" + copyStyle +
                ", copyStyleRow=" + copyStyleRow +
                ", copyStyleCol=" + copyStyleCol +
                ", center=" + center +
                ", formula=" + formula +
                ", nameRefer=" + nameRefer +
                ", validation=" + validation +
                ", validationDataList=" + validationDataList +
                ", validationErrorMsg='" + validationErrorMsg + '\'' +
                ", fontColor='" + fontColor + '\'' +
                ", dateFormat='" + dateFormat + '\'' +
                ", readOnly=" + readOnly +
                '}';
    }
}