1 changed files with 50 additions and 0 deletions
			
			
		| @ -0,0 +1,50 @@ | |||
| package com.epmet.dataaggre.excel; | |||
| 
 | |||
| import cn.afterturn.easypoi.excel.annotation.Excel; | |||
| import lombok.Data; | |||
| 
 | |||
| /** | |||
|  * @Author zxc | |||
|  * @DateTime 2021/9/10 10:15 上午 | |||
|  * @DESC | |||
|  */ | |||
| @Data | |||
| public class CustomerDataManageExcel { | |||
| 
 | |||
|     @Excel(name = "组织") | |||
|     private String orgName; | |||
| 
 | |||
|     @Excel(name = "用户数") | |||
|     private Integer userCount; | |||
| 
 | |||
|     @Excel(name = "居民数") | |||
|     private Integer residentCount; | |||
| 
 | |||
|     @Excel(name = "党员数") | |||
|     private Integer partyMemberCount; | |||
| 
 | |||
|     @Excel(name = "小组数") | |||
|     private Integer groupCount; | |||
| 
 | |||
|     @Excel(name = "话题数") | |||
|     private Integer topicCount; | |||
| 
 | |||
|     @Excel(name = "议题数") | |||
|     private Integer issueCount; | |||
| 
 | |||
|     @Excel(name = "项目数") | |||
|     private Integer projectCount; | |||
| 
 | |||
|     @Excel(name = "结案项目数") | |||
|     private Integer closedProjectCount; | |||
| 
 | |||
|     @Excel(name = "巡查人数") | |||
|     private Integer patrolPeopleCount; | |||
| 
 | |||
|     @Excel(name = "巡查次数") | |||
|     private Integer patrolCount; | |||
| 
 | |||
|     @Excel(name = "巡查时长") | |||
|     private Integer patrolDuration; | |||
| 
 | |||
| } | |||
					Loading…
					
					
				
		Reference in new issue