菜单新增路由名称

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("描述") @ApiModelProperty("描述")
private String remark; private String remark;
@ApiModelProperty("路由名称")
private String routeName;
/** /**
* 资源更新操作实体 * 资源更新操作实体
* 需要填写的参数资源的id * 需要填写的参数资源的id

View File

@@ -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;
} }

View File

@@ -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("路径")

View File

@@ -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