DictionaryDataSelectVO.java 912 B

123456789101112131415161718192021222324252627282930313233
  1. package jnpf.base.model.dictionarydata;
  2. import com.fasterxml.jackson.annotation.JsonInclude;
  3. import io.swagger.v3.oas.annotations.media.Schema;
  4. import lombok.Data;
  5. import java.util.List;
  6. /**
  7. *
  8. * @author JNPF开发平台组
  9. * @version V3.1.0
  10. * @copyright 引迈信息技术有限公司
  11. * @date 2021/3/12 15:31
  12. */
  13. @Data
  14. @JsonInclude(JsonInclude.Include.NON_NULL)
  15. public class DictionaryDataSelectVO {
  16. @Schema(description = "主键")
  17. private String id;
  18. @Schema(description = "父级主键")
  19. private String parentId;
  20. @Schema(description = "是否有子集")
  21. private Boolean hasChildren;
  22. @Schema(description = "子集集合")
  23. private List<DictionaryDataSelectVO> children;
  24. @Schema(description = "名称")
  25. private String fullName;
  26. @Schema(description = "图标")
  27. private String icon;
  28. @Schema(description = "分类id")
  29. private String dictionaryTypeId;
  30. }