RoleSelectorVO.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package jnpf.permission.model.role;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.util.List;
  5. /**
  6. *
  7. * @author JNPF开发平台组
  8. * @version V3.1.0
  9. * @copyright 引迈信息技术有限公司
  10. * @date 2021/3/12 15:31
  11. */
  12. @Data
  13. public class RoleSelectorVO {
  14. @Schema(description = "ID")
  15. private String id;
  16. @Schema(description = "名称")
  17. private String fullName;
  18. @Schema(description = "类型")
  19. private String type;
  20. @Schema(description = "数量")
  21. private Long num;
  22. @Schema(description = "前端解析唯一标识")
  23. private String onlyId;
  24. @Schema(description = "父节点ID")
  25. private String parentId;
  26. @Schema(description = "子类对象集合")
  27. private List<RoleSelectorVO> children;
  28. @Schema(description = "是否含有子类对象集合")
  29. private Boolean hasChildren;
  30. @Schema(description = "")
  31. private Boolean isLeaf;
  32. @Schema(description = "图标")
  33. private String icon;
  34. @Schema(description = "是否系统")
  35. private Integer globalMark;
  36. private String organize;
  37. @Schema(description = "组织id树")
  38. private List<String> organizeIds;
  39. }