-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExcelRowSignData.java
More file actions
32 lines (28 loc) · 1.03 KB
/
ExcelRowSignData.java
File metadata and controls
32 lines (28 loc) · 1.03 KB
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
package com.excel.utils.excel.refactor;
import java.util.List;
/**
* @Author: Vachel Wang
* @Date: 2017/5/2
* @Time: 下午8:29
* @Version: V1.0
* @Description: 单行内容
*/
public class ExcelRowSignData extends ExcelData {
/**
* @param exportExcelCustom 处理excel对象
* @param rowData 数据内容
* @param colIndex 填充列坐标
* @param rowIndex 填充行坐标
* @param colWidth 列宽
* @param rowHeight 行高
* @param sheetIndex sheet下标
* @param excelConfigExt 扩展配置
*/
public ExcelRowSignData(ExportExcelCustom exportExcelCustom, List<ExcelData> rowData, Integer colIndex, Integer rowIndex, Integer colWidth, Integer rowHeight, Integer sheetIndex, ExcelConfigExt excelConfigExt) {
super(exportExcelCustom, rowData, colIndex, rowIndex, colWidth, rowHeight, sheetIndex, excelConfigExt);
}
@Override
public void fillData() {
this.getExportExcelCustom().fillRowSignData(this);
}
}