xiaoyong931011
2022-07-08 bd4ab82f2e0c485f36a254e3cbf72f21dabfd628
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.xcong.farmer.cms.modules.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminSeeMenuInfoVo", description = "系统菜单详情返回")
public class AdminSeeMenuInfoVo {
 
    @ApiModelProperty(value = "菜单ID")
    private Long id;
 
    @ApiModelProperty(value = "菜单按钮标题")
    private String menuName;
 
    @ApiModelProperty(value = "菜单类型 1:菜单 2:按钮")
    private Integer menuType;
 
    @ApiModelProperty(value = "路由地址")
    private String routeUrl;
 
    @ApiModelProperty(value = "排序")
    private Integer orderNum;
 
    @ApiModelProperty(value = "父级ID")
    private Long parentId;
}