菜单新增路由名称

This commit is contained in:
2023-05-04 09:29:54 +08:00
parent bcbd52ed92
commit 6c4ed4ad15
4 changed files with 16 additions and 5 deletions

View File

@@ -56,6 +56,9 @@ public class FunctionParam {
@ApiModelProperty("描述")
private String remark;
@ApiModelProperty("路由名称")
private String routeName;
/**
* 资源更新操作实体
* 需要填写的参数资源的id

View File

@@ -59,7 +59,7 @@ public class Function extends BaseEntity {
private Integer sort;
/**
* 资源类型0-菜单、1-按钮、2-公共资源、3-服务间调用资源
* 资源类型0-菜单、1-按钮、2-公共资源、3-服务间调用资源 4-tab页
*/
private Integer type;
@@ -73,4 +73,9 @@ public class Function extends BaseEntity {
*/
private Integer state;
/**
* 路由名称
*/
private String routeName;
}

View File

@@ -28,7 +28,7 @@ public class FunctionVO implements Serializable {
@ApiModelProperty("资源标识")
private String code;
@ApiModelProperty("routeName")
@ApiModelProperty("路由名称")
private String routeName;
@ApiModelProperty("路径")

View File

@@ -10,7 +10,8 @@
Path routePath,
Icon,Sort,
Type,
Remark
Remark,
Route_Name routeName
FROM
sys_function
WHERE
@@ -25,7 +26,8 @@
Path routePath,
Icon,Sort,
Type,
Remark
Remark,
Route_Name routeName
FROM
sys_function
WHERE
@@ -45,7 +47,8 @@
Path routePath,
Icon,Sort,
Type,
Remark
Remark,
Route_Name routeName
FROM
sys_function
WHERE