添加菜单栏面包屑是否隐藏字段

This commit is contained in:
geeeekegeeeeke 2025-04-08 12:19:27 +08:00
parent 800c441aa5
commit eac7a67c22
5 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,5 @@
package cd.casic.module.system.controller.admin.auth.vo; package cd.casic.module.system.controller.admin.auth.vo;
import cd.casic.framework.commons.enums.CommonStatusEnum;
import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.media.Schema;
import lombok.AllArgsConstructor; import lombok.AllArgsConstructor;
import lombok.Builder; import lombok.Builder;
@ -110,6 +109,8 @@ public class AuthPermissionInfoRespVO {
@Schema(description = "isTag", example = "1") @Schema(description = "isTag", example = "1")
private Boolean isTag; private Boolean isTag;
@Schema(description = "hideBreadcrumb", example = "1")
private Boolean hideBreadcrumb;
@Schema(description = "tagDot", example = "1") @Schema(description = "tagDot", example = "1")
private Boolean tagDot; private Boolean tagDot;
@Schema(description = "tagType", example = "1") @Schema(description = "tagType", example = "1")

View File

@ -91,7 +91,7 @@ public class MenuRespVO {
private Boolean isTag; private Boolean isTag;
private Boolean hideBreadcrumb;
private Boolean tagDot; private Boolean tagDot;
private String tagType; private String tagType;
private String tagContent; private String tagContent;

View File

@ -85,7 +85,7 @@ public class MenuSaveVO {
private Boolean isTag; private Boolean isTag;
private Boolean hideBreadcrumb;
private Boolean tagDot; private Boolean tagDot;
private String tagType; private String tagType;
private String tagContent; private String tagContent;

View File

@ -98,7 +98,7 @@ public class MenuTreeVO {
private Boolean isTag; private Boolean isTag;
private Boolean hideBreadcrumb;
private Boolean tagDot; private Boolean tagDot;
private String tagType; private String tagType;
private String tagContent; private String tagContent;

View File

@ -128,6 +128,7 @@ public class MenuDO extends BaseDO {
private Boolean isTag; private Boolean isTag;
private Boolean hideBreadcrumb;
private Boolean tagDot; private Boolean tagDot;
private String tagType; private String tagType;