文档对比合并单元格类
This commit is contained in:
+51
@@ -0,0 +1,51 @@
|
||||
package com.jero.modules.compare.entity;
|
||||
|
||||
public class SarFileCompareExcelMergeCell {
|
||||
|
||||
Integer leftStart;
|
||||
Integer leftEnd;
|
||||
Integer rightStart;
|
||||
Integer rightEnd;
|
||||
|
||||
public Integer getLeftStart() {
|
||||
return leftStart;
|
||||
}
|
||||
|
||||
public void setLeftStart(Integer leftStart) {
|
||||
this.leftStart = leftStart;
|
||||
}
|
||||
|
||||
public Integer getLeftEnd() {
|
||||
return leftEnd;
|
||||
}
|
||||
|
||||
public void setLeftEnd(Integer leftEnd) {
|
||||
this.leftEnd = leftEnd;
|
||||
}
|
||||
|
||||
public Integer getRightStart() {
|
||||
return rightStart;
|
||||
}
|
||||
|
||||
public void setRightStart(Integer rightStart) {
|
||||
this.rightStart = rightStart;
|
||||
}
|
||||
|
||||
public Integer getRightEnd() {
|
||||
return rightEnd;
|
||||
}
|
||||
|
||||
public void setRightEnd(Integer rightEnd) {
|
||||
this.rightEnd = rightEnd;
|
||||
}
|
||||
|
||||
public SarFileCompareExcelMergeCell() {
|
||||
}
|
||||
|
||||
public SarFileCompareExcelMergeCell(Integer leftStart, Integer leftEnd, Integer rightStart, Integer rightEnd) {
|
||||
this.leftStart = leftStart;
|
||||
this.leftEnd = leftEnd;
|
||||
this.rightStart = rightStart;
|
||||
this.rightEnd = rightEnd;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user