| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package jnpf.model;
- import lombok.Data;
- import java.util.List;
- /**
- * 导入预览表头对象
- *
- * @author JNPF开发平台组
- * @version v5.0.0
- * @copyright 引迈信息技术有限公司
- * @date 2024/5/18 11:38:15
- */
- @Data
- public class ExcelViewFieldModel {
- private String id;
- private String fullName;
- private String jnpfKey;
- private List<ExcelViewFieldModel> children;
- public ExcelViewFieldModel(String id, String fullName, List<ExcelViewFieldModel> children) {
- this.id = id;
- this.fullName = fullName;
- this.children = children;
- }
- public ExcelViewFieldModel(String id, String fullName) {
- this.id = id;
- this.fullName = fullName;
- }
- public ExcelViewFieldModel(String id, String fullName, String jnpfKey, List<ExcelViewFieldModel> children) {
- this.id = id;
- this.fullName = fullName;
- this.jnpfKey = jnpfKey;
- this.children = children;
- }
- public ExcelViewFieldModel(String id, String fullName, String jnpfKey) {
- this.id = id;
- this.fullName = fullName;
- this.jnpfKey = jnpfKey;
- }
- }
|