Commit e3e05ae0 authored by yanzg's avatar yanzg

设置单元格合并样式

parent 5bb13a26
...@@ -8,6 +8,11 @@ import io.swagger.annotations.ApiModelProperty; ...@@ -8,6 +8,11 @@ import io.swagger.annotations.ApiModelProperty;
* @author 颜佐光 * @author 颜佐光
*/ */
public class ExcelDefineCell { public class ExcelDefineCell {
/**
* 第几列
*/
@ApiModelProperty(notes = "第几列")
private short columnPos;
/** /**
* 横合并 * 横合并
*/ */
...@@ -39,6 +44,14 @@ public class ExcelDefineCell { ...@@ -39,6 +44,14 @@ public class ExcelDefineCell {
@ApiModelProperty(notes = " 公式,如:SUM(C2:C3),或者SUM(columnName),columnName=数据列名称,公式优先.不能SUM(columnA/columnB)") @ApiModelProperty(notes = " 公式,如:SUM(C2:C3),或者SUM(columnName),columnName=数据列名称,公式优先.不能SUM(columnA/columnB)")
private String formula; private String formula;
public short getColumnPos() {
return columnPos;
}
public void setColumnPos(short columnPos) {
this.columnPos = columnPos;
}
public short getWidthSize() { public short getWidthSize() {
return widthSize; return widthSize;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment