ExcelGraphElement.java
1.22 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
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
package com.bckefu.excel.graph.entity;
import com.bckefu.excel.graph.constant.ExcelGraphElementType;
/**
* @author caoliang1918@aliyun.com
* @Date 2017/11/5:23:25
*/
public class ExcelGraphElement {
private Integer startRowNum;
private Integer endRowNum;
private Integer startColNum;
private Integer endColNum;
private Integer elementType = ExcelGraphElementType.STRING_TYPE;
public Integer getStartRowNum() {
return startRowNum;
}
public void setStartRowNum(Integer startRowNum) {
this.startRowNum = startRowNum;
}
public Integer getEndRowNum() {
return endRowNum;
}
public void setEndRowNum(Integer endRowNum) {
this.endRowNum = endRowNum;
}
public Integer getStartColNum() {
return startColNum;
}
public void setStartColNum(Integer startColNum) {
this.startColNum = startColNum;
}
public Integer getEndColNum() {
return endColNum;
}
public void setEndColNum(Integer endColNum) {
this.endColNum = endColNum;
}
public Integer getElementType() {
return elementType;
}
public void setElementType(Integer elementType) {
this.elementType = elementType;
}
}