xiaoyong931011
2022-07-07 1facfdc9361d888d72c959bac4d8fb05dcad02d7
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
package com.xcong.farmer.cms.modules.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel(value = "AdminHomePageInfoVo", description = "首页信息返回")
public class AdminHomePageInfoVo {
 
    @ApiModelProperty(value = "栏目数量")
    private Integer columnNum;
 
    @ApiModelProperty(value = "文章数量")
    private Integer articleNum;
 
    @ApiModelProperty(value = "留言数量")
    private Integer messageNum;
 
    @ApiModelProperty(value = "角色")
    private List<String> roleNames;
 
}