8 changed files with 574 additions and 10 deletions
@ -0,0 +1,24 @@ |
|||
package com.elink.esua.epdc.dto.user.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
@Data |
|||
public class ExportOperationFormDTO implements Serializable { |
|||
|
|||
private String operationStartTime; |
|||
|
|||
private String operationEndTime; |
|||
|
|||
/** |
|||
* 所有部门列表 |
|||
*/ |
|||
private List<Long[]> allDeptIdsShow; |
|||
|
|||
private List<Long> allStreetIds; |
|||
|
|||
private String endTime; |
|||
} |
|||
@ -0,0 +1,76 @@ |
|||
package com.elink.esua.epdc.dto.user.result; |
|||
|
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
|
|||
/** |
|||
* @author: qushutong |
|||
* @Date: 2020/3/23 14:47 |
|||
* @Description: 运营导出数据 |
|||
*/ |
|||
@Data |
|||
public class ExportOperationDataResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -798787916350968587L; |
|||
|
|||
/** |
|||
* 居民数 |
|||
*/ |
|||
private int registerCount = 0; |
|||
|
|||
/** |
|||
* 未认证用户数 |
|||
*/ |
|||
private int unAuthorizedCount = 0; |
|||
|
|||
|
|||
/** |
|||
* 党员数 |
|||
*/ |
|||
private int partyCount = 0; |
|||
|
|||
/** |
|||
* 新闻发布数 |
|||
*/ |
|||
private int newsCount = 0; |
|||
|
|||
|
|||
/** |
|||
* 议题数 |
|||
*/ |
|||
private int eventCount = 0; |
|||
|
|||
/** |
|||
* 项目数 |
|||
*/ |
|||
private int itemCount = 0; |
|||
|
|||
/** |
|||
* 项目解决数 |
|||
*/ |
|||
private int itemCloseCount = 0; |
|||
|
|||
/** |
|||
* 社群数 |
|||
*/ |
|||
private int communityCount = 0; |
|||
|
|||
/** |
|||
* 社群成员数 |
|||
*/ |
|||
private int communityMemberCount = 0; |
|||
|
|||
/** |
|||
* 社群话题数 |
|||
*/ |
|||
private int communityTopicCount = 0; |
|||
|
|||
/** |
|||
* 街道 |
|||
*/ |
|||
private String streetName; |
|||
|
|||
} |
|||
@ -0,0 +1,52 @@ |
|||
package com.elink.esua.epdc.excel; |
|||
|
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
|
|||
/** |
|||
* @author: qushutong |
|||
* @Date: 2020/3/23 14:47 |
|||
* @Description: 运营导出数据 |
|||
*/ |
|||
@Data |
|||
public class ExportOperationDataExcel implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 4935348597474149310L; |
|||
|
|||
@Excel(name = "街道") |
|||
private String streetName; |
|||
|
|||
@Excel(name = "居民数") |
|||
private int registerCount = 0; |
|||
|
|||
@Excel(name = "已认证党员数") |
|||
private int partyCount = 0; |
|||
|
|||
@Excel(name = "新闻发布数") |
|||
private int newsCount = 0; |
|||
|
|||
|
|||
@Excel(name = "议题数") |
|||
private int eventCount = 0; |
|||
|
|||
@Excel(name = "项目数") |
|||
private int itemCount = 0; |
|||
|
|||
@Excel(name = "项目结案数") |
|||
private int itemCloseCount = 0; |
|||
|
|||
@Excel(name = "社群数") |
|||
private int communityCount = 0; |
|||
|
|||
@Excel(name = "社群成员数") |
|||
private int communityMemberCount = 0; |
|||
|
|||
@Excel(name = "社群话题数") |
|||
private int communityTopicCount = 0; |
|||
|
|||
|
|||
} |
|||
Loading…
Reference in new issue