ExcelViewFieldModel.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package jnpf.model;
  2. import lombok.Data;
  3. import java.util.List;
  4. /**
  5. * 导入预览表头对象
  6. *
  7. * @author JNPF开发平台组
  8. * @version v5.0.0
  9. * @copyright 引迈信息技术有限公司
  10. * @date 2024/5/18 11:38:15
  11. */
  12. @Data
  13. public class ExcelViewFieldModel {
  14. private String id;
  15. private String fullName;
  16. private String jnpfKey;
  17. private List<ExcelViewFieldModel> children;
  18. public ExcelViewFieldModel(String id, String fullName, List<ExcelViewFieldModel> children) {
  19. this.id = id;
  20. this.fullName = fullName;
  21. this.children = children;
  22. }
  23. public ExcelViewFieldModel(String id, String fullName) {
  24. this.id = id;
  25. this.fullName = fullName;
  26. }
  27. public ExcelViewFieldModel(String id, String fullName, String jnpfKey, List<ExcelViewFieldModel> children) {
  28. this.id = id;
  29. this.fullName = fullName;
  30. this.jnpfKey = jnpfKey;
  31. this.children = children;
  32. }
  33. public ExcelViewFieldModel(String id, String fullName, String jnpfKey) {
  34. this.id = id;
  35. this.fullName = fullName;
  36. this.jnpfKey = jnpfKey;
  37. }
  38. }