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