This commit is contained in:
2025-11-06 17:53:16 +08:00
parent 6768fa5061
commit 99d64022dd
3 changed files with 192 additions and 8 deletions

View File

@@ -50,7 +50,10 @@ public class TencentDocConfig {
/** 工作表IDH-TF订单的目标工作表ID */
private String sheetId;
/** 起始行号(从第几行开始搜索匹配单号默认为3即第3行开始为数据行 */
/** 表头行号(表头所在的行默认为2 */
private Integer headerRow = 2;
/** 起始行号数据开始的行从第几行开始搜索匹配单号默认为3 */
private Integer startRow = 3;
/**
@@ -154,6 +157,14 @@ public class TencentDocConfig {
this.sheetId = sheetId;
}
public Integer getHeaderRow() {
return headerRow;
}
public void setHeaderRow(Integer headerRow) {
this.headerRow = headerRow;
}
public Integer getStartRow() {
return startRow;
}