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