3 changed files with 134 additions and 10 deletions
@ -0,0 +1,52 @@ |
|||||
|
package com.elink.esua.epdc.excel; |
||||
|
|
||||
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* @author: qushutong |
||||
|
* @Date: 2020/2/12 14:24 |
||||
|
* @Description: 注册用户分析 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class PartyAnalysExcel { |
||||
|
@Excel(name = "街道名称") |
||||
|
private String streetName; |
||||
|
|
||||
|
@Excel(name = "注册用户数") |
||||
|
private Integer userCount; |
||||
|
|
||||
|
@Excel(name = "注册党员数") |
||||
|
private Integer partyMemberCount; |
||||
|
|
||||
|
@Excel(name = "注册居民数") |
||||
|
private Integer residentCount; |
||||
|
|
||||
|
@Excel(name = "男") |
||||
|
private Integer maleCount; |
||||
|
|
||||
|
@Excel(name = "女") |
||||
|
private Integer femaleCount; |
||||
|
|
||||
|
@Excel(name = "其他") |
||||
|
private Integer unknownSexCount; |
||||
|
|
||||
|
@Excel(name = "超过50岁用户数量") |
||||
|
private Integer oldCount; |
||||
|
|
||||
|
@Excel(name = "老龄化比例") |
||||
|
private BigDecimal oldPercent; |
||||
|
|
||||
|
@Excel(name = "50岁以下用户数量") |
||||
|
private Integer youngCount; |
||||
|
|
||||
|
@Excel(name = "年轻化比例") |
||||
|
private BigDecimal youngPercent; |
||||
|
|
||||
|
@Excel(name = "党员认证失败数") |
||||
|
private Integer partyAuthFailureCount; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,50 @@ |
|||||
|
package com.elink.esua.epdc.excel; |
||||
|
|
||||
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* @author: qushutong |
||||
|
* @Date: 2020/2/12 14:24 |
||||
|
* @Description: 注册用户分析 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class RegisterExcel { |
||||
|
@Excel(name = "街道名称") |
||||
|
private String streetName; |
||||
|
|
||||
|
@Excel(name = "注册用户数") |
||||
|
private Integer userCount; |
||||
|
|
||||
|
@Excel(name = "注册党员数") |
||||
|
private Integer partyMemberCount; |
||||
|
|
||||
|
@Excel(name = "注册居民数") |
||||
|
private Integer residentCount; |
||||
|
|
||||
|
@Excel(name = "男") |
||||
|
private Integer maleCount; |
||||
|
|
||||
|
@Excel(name = "女") |
||||
|
private Integer femaleCount; |
||||
|
|
||||
|
@Excel(name = "其他") |
||||
|
private Integer unknownSexCount; |
||||
|
|
||||
|
@Excel(name = "超过50岁用户数量") |
||||
|
private Integer oldCount; |
||||
|
|
||||
|
@Excel(name = "老龄化比例") |
||||
|
private BigDecimal oldPercent; |
||||
|
|
||||
|
@Excel(name = "50岁以下用户数量") |
||||
|
private Integer youngCount; |
||||
|
|
||||
|
@Excel(name = "年轻化比例") |
||||
|
private BigDecimal youngPercent; |
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue