From 599016a63aece471607eeb7268e3bced2a3b01af Mon Sep 17 00:00:00 2001
From: 疯狂的狮子li <15040126243@163.com>
Date: 星期一, 12 七月 2021 09:44:46 +0800
Subject: [PATCH] update 同步ruoyi修正差异

---
 ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/MetaVo.java |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/MetaVo.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/MetaVo.java
index e389f5d..05a2e12 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/MetaVo.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/MetaVo.java
@@ -28,6 +28,11 @@
      */
     private boolean noCache;
 
+	/**
+	 * 鍐呴摼鍦板潃锛坔ttp(s)://寮�澶达級
+	 */
+	private String link;
+
     public MetaVo(String title, String icon) {
         this.title = title;
         this.icon = icon;
@@ -39,4 +44,17 @@
         this.noCache = noCache;
     }
 
+	public MetaVo(String title, String icon, String link) {
+		this.title = title;
+		this.icon = icon;
+		this.link = link;
+	}
+
+	public MetaVo(String title, String icon, boolean noCache, String link) {
+		this.title = title;
+		this.icon = icon;
+		this.noCache = noCache;
+		this.link = link;
+	}
+
 }

--
Gitblit v1.9.3