mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
package com.panzhihua.common.model.vos.community;
 
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @author lyq
 * 运营后台-首页社区通用户街道统计汇总
 */
@Data
@ApiModel("运营后台-首页社区通用户街道统计汇总")
public class IndexUserStreetExcelExportVo {
 
    @ExcelProperty(value = "街道名称", index = 0)
    private String streetName;
 
    @ExcelProperty(value = "社区名称", index = 1)
    private String communityName;
 
    @ExcelProperty(value = "街道下注册用户数量", index = 2)
    private Integer streetNum;
 
    @ExcelProperty(value = "社区下注册用户数量", index = 3)
    private Integer userNum;
 
}