菜单增加隐藏

This commit is contained in:
2022-09-06 15:35:59 +08:00
parent 49c3e34b23
commit 4a7e7c2595
4 changed files with 8 additions and 1 deletions
@@ -34,6 +34,9 @@ public class AuthMenuRespVO {
@ApiModelProperty(value = "菜单图标", example = "/menu/list", notes = "仅菜单类型为菜单或者目录时,才需要传") @ApiModelProperty(value = "菜单图标", example = "/menu/list", notes = "仅菜单类型为菜单或者目录时,才需要传")
private String icon; private String icon;
@ApiModelProperty(value = "是否隐藏")
private Boolean hidden;
/** /**
* 子路由 * 子路由
*/ */
@@ -50,4 +50,6 @@ public class MenuBaseVO {
@NotNull(message = "状态不能为空") @NotNull(message = "状态不能为空")
private Integer status; private Integer status;
private Boolean hidden;
} }
@@ -73,4 +73,6 @@ public class MenuDO extends BaseDO {
*/ */
private Integer status; private Integer status;
private Boolean hidden;
} }