6 changed files with 140 additions and 7 deletions
@ -0,0 +1,71 @@ |
|||||
|
package com.epmet.evaluationindex.screen.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 首页-平台各类总数 |
||||
|
* @Author sun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class SummaryResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 3860268744336541373L; |
||||
|
|
||||
|
/** |
||||
|
* 数据更新至:yyyyMMdd |
||||
|
*/ |
||||
|
private String dateId = ""; |
||||
|
|
||||
|
/** |
||||
|
* 网格总数 |
||||
|
*/ |
||||
|
private Integer gridCount = 0; |
||||
|
/** |
||||
|
* 已开通网格数 |
||||
|
*/ |
||||
|
private Integer openedGridCount = 0; |
||||
|
/** |
||||
|
* 议题总数 |
||||
|
*/ |
||||
|
private Integer issueCount = 0; |
||||
|
/** |
||||
|
* 项目总数 |
||||
|
*/ |
||||
|
private Integer projectCount = 0; |
||||
|
/** |
||||
|
* 用户总数 |
||||
|
*/ |
||||
|
private Integer userCount = 0; |
||||
|
/** |
||||
|
* 党员用户 |
||||
|
*/ |
||||
|
private Integer partyUserCount = 0; |
||||
|
/** |
||||
|
* 社群总数 |
||||
|
*/ |
||||
|
private Integer groupCount = 0; |
||||
|
/** |
||||
|
* 话题总数 |
||||
|
*/ |
||||
|
private Integer topicCount = 0; |
||||
|
/** |
||||
|
* 新闻总数 |
||||
|
*/ |
||||
|
private Integer newsCount = 0; |
||||
|
/** |
||||
|
* 阅读数量 |
||||
|
*/ |
||||
|
private Integer readCount = 0; |
||||
|
/** |
||||
|
* 公益活动总数 |
||||
|
*/ |
||||
|
private Integer actCount = 0; |
||||
|
/** |
||||
|
* 志愿者总数 |
||||
|
*/ |
||||
|
private Integer volunteerCount = 0; |
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue