commit
Some checks failed
API接口参数变更检测 / api-param-check (push) Has been cancelled

This commit is contained in:
2026-06-05 16:18:40 +08:00
parent 1ca34c6bb2
commit 3cba3bb74e
4393 changed files with 450030 additions and 103 deletions

View File

@@ -0,0 +1,33 @@
package jnpf.util.excel;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
@Slf4j
@Data
public class ExcelSelectedResolve{
/**
* 需要匹配的sheet名称
*/
private String sheetName;
/**
* 需要匹配的header名称
*/
private String headerName;
/**
* 下拉内容 自己构建
*/
private String[] source;
/**
* 设置下拉框的起始行,默认为第二行
*/
private int firstRow = 1;
/**
* 设置下拉框的结束行,默认为最后一行
*/
private int lastRow = 100;
private int rowNum;
}