MenuSelectVO.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package jnpf.base.model.module;
  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 MenuSelectVO {
  14. @Schema(description = "主键")
  15. private String id;
  16. @Schema(description = "父主键")
  17. private String parentId;
  18. @Schema(description = "名称")
  19. private String fullName;
  20. @Schema(description = "是否按钮权限")
  21. private Integer isButtonAuthorize;
  22. @Schema(description = "是否列表权限")
  23. private Integer isColumnAuthorize;
  24. @Schema(description = "是否数据权限")
  25. private Integer isDataAuthorize;
  26. @Schema(description = "排序码")
  27. private Long sortCode;
  28. @Schema(description = "图标")
  29. private String icon;
  30. @Schema(description = "是否有下级菜单")
  31. private Boolean hasChildren;
  32. @Schema(description = "下级菜单列表")
  33. private List<MenuSelectVO> children;
  34. @Schema(description = "外链")
  35. private String linkTarget;
  36. @Schema(description = "编码")
  37. private String enCode;
  38. @Schema(description = "系统id")
  39. private String systemId;
  40. @Schema(description = "分类")
  41. private Integer type;
  42. }