RuoYi
2022-01-05 578d65dfb4c07bd75aa5a6d2f46fc63fa5701fc3
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysMenu.java
@@ -38,8 +38,14 @@
    /** 组件路径 */
    private String component;
    /** 路由参数 */
    private String query;
    /** 是否为外链(0是 1否) */
    private String isFrame;
    /** 是否缓存(0缓存 1不缓存) */
    private String isCache;
    /** 类型(M目录 C菜单 F按钮) */
    private String menuType;
@@ -134,6 +140,16 @@
        this.component = component;
    }
    public String getQuery()
    {
        return query;
    }
    public void setQuery(String query)
    {
        this.query = query;
    }
    public String getIsFrame()
    {
        return isFrame;
@@ -142,6 +158,16 @@
    public void setIsFrame(String isFrame)
    {
        this.isFrame = isFrame;
    }
    public String getIsCache()
    {
        return isCache;
    }
    public void setIsCache(String isCache)
    {
        this.isCache = isCache;
    }
    @NotBlank(message = "菜单类型不能为空")
@@ -216,6 +242,7 @@
            .append("path", getPath())
            .append("component", getComponent())
            .append("isFrame", getIsFrame())
            .append("IsCache", getIsCache())
            .append("menuType", getMenuType())
            .append("visible", getVisible())
            .append("status ", getStatus())