ExcelImFieldModel.java 1012 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package jnpf.onlinedev.model;
  2. import lombok.Data;
  3. import java.util.List;
  4. /**
  5. *
  6. *
  7. * @author JNPF开发平台组
  8. * @version V3.4.3
  9. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  10. * @date 2022/9/21
  11. */
  12. @Data
  13. public class ExcelImFieldModel {
  14. private String id;
  15. private String fullName;
  16. private String jnpfKey;
  17. private List<ExcelImFieldModel> children;
  18. public ExcelImFieldModel(String id, String fullName, List<ExcelImFieldModel> children) {
  19. this.id = id;
  20. this.fullName = fullName;
  21. this.children = children;
  22. }
  23. public ExcelImFieldModel(String id, String fullName) {
  24. this.id = id;
  25. this.fullName = fullName;
  26. }
  27. public ExcelImFieldModel(String id, String fullName, String jnpfKey, List<ExcelImFieldModel> children) {
  28. this.id = id;
  29. this.fullName = fullName;
  30. this.jnpfKey = jnpfKey;
  31. this.children = children;
  32. }
  33. public ExcelImFieldModel(String id, String fullName, String jnpfKey) {
  34. this.id = id;
  35. this.fullName = fullName;
  36. this.jnpfKey = jnpfKey;
  37. }
  38. }