1
This commit is contained in:
@@ -50,6 +50,9 @@ public class TencentDocConfig {
|
||||
/** 工作表ID(H-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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user