34 lines
606 B
Java
34 lines
606 B
Java
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;
|
|
}
|