update 同步ruoyi修正差异

This commit is contained in:
疯狂的狮子li
2021-07-12 09:44:46 +08:00
parent 8231953e29
commit 599016a63a
4 changed files with 48 additions and 31 deletions

View File

@ -44,4 +44,17 @@ public class MetaVo {
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;
}
}