添加模板导入-可下拉选择
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.njcn.common.pojo.poi;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author caozehui 设置下拉
|
||||
* @description
|
||||
* @date 2025-01-15
|
||||
*/
|
||||
@Data
|
||||
public class PullDown {
|
||||
|
||||
//起始列
|
||||
private Integer firstCol;
|
||||
|
||||
//结束列
|
||||
private Integer lastCol;
|
||||
|
||||
//是否设置单元格(文本)
|
||||
private Boolean isText = false;
|
||||
|
||||
//属性值
|
||||
private List<String> strings;
|
||||
}
|
||||
Reference in New Issue
Block a user