|
@@ -5,7 +5,7 @@ import java.util.List;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 路由配置信息
|
|
* 路由配置信息
|
|
- *
|
|
|
|
|
|
+ *
|
|
* @author ruoyi
|
|
* @author ruoyi
|
|
*/
|
|
*/
|
|
@JsonInclude(JsonInclude.Include.NON_EMPTY)
|
|
@JsonInclude(JsonInclude.Include.NON_EMPTY)
|
|
@@ -56,6 +56,19 @@ public class RouterVo
|
|
*/
|
|
*/
|
|
private List<RouterVo> children;
|
|
private List<RouterVo> children;
|
|
|
|
|
|
|
|
+ /*
|
|
|
|
+ * 额外的参数
|
|
|
|
+ */
|
|
|
|
+ private String extraParam;
|
|
|
|
+
|
|
|
|
+ public String getExtraParam() {
|
|
|
|
+ return extraParam;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExtraParam(String extraParam) {
|
|
|
|
+ this.extraParam = extraParam;
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getSysTableName() {
|
|
public String getSysTableName() {
|
|
return sysTableName;
|
|
return sysTableName;
|
|
}
|
|
}
|
|
@@ -64,83 +77,67 @@ public class RouterVo
|
|
this.sysTableName = sysTableName;
|
|
this.sysTableName = sysTableName;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getName()
|
|
|
|
- {
|
|
|
|
|
|
+ public String getName() {
|
|
return name;
|
|
return name;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setName(String name)
|
|
|
|
- {
|
|
|
|
|
|
+ public void setName(String name) {
|
|
this.name = name;
|
|
this.name = name;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getPath()
|
|
|
|
- {
|
|
|
|
|
|
+ public String getPath() {
|
|
return path;
|
|
return path;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setPath(String path)
|
|
|
|
- {
|
|
|
|
|
|
+ public void setPath(String path) {
|
|
this.path = path;
|
|
this.path = path;
|
|
}
|
|
}
|
|
|
|
|
|
- public boolean getHidden()
|
|
|
|
- {
|
|
|
|
|
|
+ public boolean getHidden() {
|
|
return hidden;
|
|
return hidden;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setHidden(boolean hidden)
|
|
|
|
- {
|
|
|
|
|
|
+ public void setHidden(boolean hidden) {
|
|
this.hidden = hidden;
|
|
this.hidden = hidden;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getRedirect()
|
|
|
|
- {
|
|
|
|
|
|
+ public String getRedirect() {
|
|
return redirect;
|
|
return redirect;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setRedirect(String redirect)
|
|
|
|
- {
|
|
|
|
|
|
+ public void setRedirect(String redirect) {
|
|
this.redirect = redirect;
|
|
this.redirect = redirect;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getComponent()
|
|
|
|
- {
|
|
|
|
|
|
+ public String getComponent() {
|
|
return component;
|
|
return component;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setComponent(String component)
|
|
|
|
- {
|
|
|
|
|
|
+ public void setComponent(String component) {
|
|
this.component = component;
|
|
this.component = component;
|
|
}
|
|
}
|
|
|
|
|
|
- public Boolean getAlwaysShow()
|
|
|
|
- {
|
|
|
|
|
|
+ public Boolean getAlwaysShow() {
|
|
return alwaysShow;
|
|
return alwaysShow;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setAlwaysShow(Boolean alwaysShow)
|
|
|
|
- {
|
|
|
|
|
|
+ public void setAlwaysShow(Boolean alwaysShow) {
|
|
this.alwaysShow = alwaysShow;
|
|
this.alwaysShow = alwaysShow;
|
|
}
|
|
}
|
|
|
|
|
|
- public MetaVo getMeta()
|
|
|
|
- {
|
|
|
|
|
|
+ public MetaVo getMeta() {
|
|
return meta;
|
|
return meta;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setMeta(MetaVo meta)
|
|
|
|
- {
|
|
|
|
|
|
+ public void setMeta(MetaVo meta) {
|
|
this.meta = meta;
|
|
this.meta = meta;
|
|
}
|
|
}
|
|
|
|
|
|
- public List<RouterVo> getChildren()
|
|
|
|
- {
|
|
|
|
|
|
+ public List<RouterVo> getChildren() {
|
|
return children;
|
|
return children;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setChildren(List<RouterVo> children)
|
|
|
|
- {
|
|
|
|
|
|
+ public void setChildren(List<RouterVo> children) {
|
|
this.children = children;
|
|
this.children = children;
|
|
}
|
|
}
|
|
}
|
|
}
|