AppMenuListVO.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package jnpf.model;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. import java.util.List;
  5. /**
  6. * app应用
  7. *
  8. * @author JNPF开发平台组
  9. * @version V3.1.0
  10. * @copyright 引迈信息技术有限公司
  11. * @date 2021-07-08
  12. */
  13. @Data
  14. @Schema(description = "常用模型")
  15. public class AppMenuListVO {
  16. @Schema(description = "主键")
  17. private String id;
  18. @Schema(description = "是否有下级菜单")
  19. private Boolean hasChildren;
  20. @Schema(description = "父级id")
  21. private String parentId;
  22. @Schema(description = "菜单编码")
  23. private String enCode;
  24. @Schema(description = "菜单名称")
  25. private String fullName;
  26. @Schema(description = " 图标")
  27. private String icon;
  28. @Schema(description = "是否常用")
  29. private Boolean isData;
  30. @Schema(description = "链接地址")
  31. private String urlAddress;
  32. @Schema(description = "页面地址")
  33. private String pageAddress;
  34. @Schema(description = "菜单类型",example = "1")
  35. private Integer type;
  36. @Schema(description = "扩展字段")
  37. private String propertyJson;
  38. @Schema(description = "下级菜单列表")
  39. private List<AppMenuListVO> children;
  40. }