菜单新增路由名称
This commit is contained in:
@@ -56,6 +56,9 @@ public class FunctionParam {
|
|||||||
@ApiModelProperty("描述")
|
@ApiModelProperty("描述")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
|
@ApiModelProperty("路由名称")
|
||||||
|
private String routeName;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 资源更新操作实体
|
* 资源更新操作实体
|
||||||
* 需要填写的参数:资源的id
|
* 需要填写的参数:资源的id
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ public class Function extends BaseEntity {
|
|||||||
private Integer sort;
|
private Integer sort;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 资源类型:0-菜单、1-按钮、2-公共资源、3-服务间调用资源
|
* 资源类型:0-菜单、1-按钮、2-公共资源、3-服务间调用资源 4-tab页
|
||||||
*/
|
*/
|
||||||
private Integer type;
|
private Integer type;
|
||||||
|
|
||||||
@@ -73,4 +73,9 @@ public class Function extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private Integer state;
|
private Integer state;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 路由名称
|
||||||
|
*/
|
||||||
|
private String routeName;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ public class FunctionVO implements Serializable {
|
|||||||
@ApiModelProperty("资源标识")
|
@ApiModelProperty("资源标识")
|
||||||
private String code;
|
private String code;
|
||||||
|
|
||||||
@ApiModelProperty("routeName")
|
@ApiModelProperty("路由名称")
|
||||||
private String routeName;
|
private String routeName;
|
||||||
|
|
||||||
@ApiModelProperty("路径")
|
@ApiModelProperty("路径")
|
||||||
|
|||||||
@@ -10,7 +10,8 @@
|
|||||||
Path routePath,
|
Path routePath,
|
||||||
Icon,Sort,
|
Icon,Sort,
|
||||||
Type,
|
Type,
|
||||||
Remark
|
Remark,
|
||||||
|
Route_Name routeName
|
||||||
FROM
|
FROM
|
||||||
sys_function
|
sys_function
|
||||||
WHERE
|
WHERE
|
||||||
@@ -25,7 +26,8 @@
|
|||||||
Path routePath,
|
Path routePath,
|
||||||
Icon,Sort,
|
Icon,Sort,
|
||||||
Type,
|
Type,
|
||||||
Remark
|
Remark,
|
||||||
|
Route_Name routeName
|
||||||
FROM
|
FROM
|
||||||
sys_function
|
sys_function
|
||||||
WHERE
|
WHERE
|
||||||
@@ -45,7 +47,8 @@
|
|||||||
Path routePath,
|
Path routePath,
|
||||||
Icon,Sort,
|
Icon,Sort,
|
||||||
Type,
|
Type,
|
||||||
Remark
|
Remark,
|
||||||
|
Route_Name routeName
|
||||||
FROM
|
FROM
|
||||||
sys_function
|
sys_function
|
||||||
WHERE
|
WHERE
|
||||||
|
|||||||
Reference in New Issue
Block a user