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 children; public ExcelViewFieldModel(String id, String fullName, List 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 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; } }