UserByRoleVO.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package jnpf.permission.model.user.vo;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.util.List;
  6. /**
  7. * @author :JNPF开发平台组
  8. * @version: V3.1.0
  9. * @copyright 引迈信息技术有限公司
  10. * @date :2022/4/14 15:49
  11. */
  12. @Data
  13. public class UserByRoleVO implements Serializable {
  14. @Schema(description = "主键")
  15. private String id;
  16. @Schema(description = "有效标志")
  17. private Integer enabledMark;
  18. @Schema(description = "名称")
  19. private String fullName;
  20. @Schema(description = "类型")
  21. private String type;
  22. @Schema(description = "头像")
  23. private String headIcon;
  24. @Schema(description = "是否含有子类对象集合")
  25. private Boolean hasChildren;
  26. @Schema(description = "是否含有子类对象集合反值")
  27. private Boolean isLeaf;
  28. @Schema(description = "图标")
  29. private String icon;
  30. @Schema(description = "父节点ID")
  31. private String parentId;
  32. @Schema(description = "数量")
  33. private Long num;
  34. @Schema(description = "组织")
  35. private String organize;
  36. @Schema(description = "性别")
  37. private String gender;
  38. @Schema(description = "子类对象集合")
  39. private List<UserByRoleVO> children;
  40. }