This commit is contained in:
2025-11-06 16:04:24 +08:00
parent c99088ff57
commit 041d47e9ba
5 changed files with 45 additions and 8 deletions

View File

@@ -50,6 +50,9 @@ public class TencentDocConfig {
/** 工作表IDH-TF订单的目标工作表ID */
private String sheetId;
/** 起始行号从第几行开始搜索匹配单号默认为3即第3行开始为数据行 */
private Integer startRow = 3;
/**
* 配置初始化后验证
*/
@@ -150,5 +153,13 @@ public class TencentDocConfig {
public void setSheetId(String sheetId) {
this.sheetId = sheetId;
}
public Integer getStartRow() {
return startRow;
}
public void setStartRow(Integer startRow) {
this.startRow = startRow;
}
}