phper08
2021-05-03 7d0f5e94efc4313422c8a21a4551b7796a1b1a62
ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/MetaVo.java
@@ -17,6 +17,11 @@
     */
    private String icon;
    /**
     * 设置为true,则不会被 <keep-alive>缓存
     */
    private boolean noCache;
    public MetaVo()
    {
    }
@@ -27,6 +32,23 @@
        this.icon = icon;
    }
    public MetaVo(String title, String icon, boolean noCache)
    {
        this.title = title;
        this.icon = icon;
        this.noCache = noCache;
    }
    public boolean isNoCache()
    {
        return noCache;
    }
    public void setNoCache(boolean noCache)
    {
        this.noCache = noCache;
    }
    public String getTitle()
    {
        return title;