Helius
2022-07-04 c305b09fbd20849a39631ddd43980cb09e1805e9
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
29
30
31
32
33
34
35
36
37
38
39
40
package com.xcong.farmer.cms.modules.system.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.List;
 
@Data
@ApiModel(value = "AdminMenuVo", description = "系统菜单列表返回")
public class AdminMenuVo {
 
    @ApiModelProperty(value = "菜单ID")
    private Long id;
 
    //菜单按钮标题
    @ApiModelProperty(value = "菜单按钮标题")
    private String menuName;
 
    //菜单类型 1:菜单 2:按钮
    @ApiModelProperty(value = "菜单类型 1:菜单 2:按钮")
    private Integer menuType;
 
    //路由地址
    @ApiModelProperty(value = "路由地址")
    private String routeUrl;
 
    //排序
    @ApiModelProperty(value = "排序")
    private Integer orderNum;
 
    @ApiModelProperty(value = "创建时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
 
    @ApiModelProperty(value = "子菜单")
    private List<AdminMenuVo> child;
 
}