10 changed files with 229 additions and 3 deletions
@ -0,0 +1,26 @@ |
|||||
|
package com.epmet.evaluationindex.screen.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 公益互助-公益活动次数 |
||||
|
* @Author sun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ActTrendMonthlyResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 3860268744336541373L; |
||||
|
|
||||
|
/** |
||||
|
* 月id :yyyyMM |
||||
|
*/ |
||||
|
private String monthId = ""; |
||||
|
|
||||
|
/** |
||||
|
* 活动数量(本月举行的活动) |
||||
|
*/ |
||||
|
private Integer actCount = 0; |
||||
|
|
||||
|
} |
@ -0,0 +1,29 @@ |
|||||
|
package com.epmet.evaluationindex.screen.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
import rx.internal.util.LinkedArrayList; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.LinkedList; |
||||
|
|
||||
|
/** |
||||
|
* 公益互助-公益活动次数 |
||||
|
* @Author sun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class HeartActcounttrendResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 3860268744336541373L; |
||||
|
|
||||
|
/** |
||||
|
* 横坐标 月份集合 |
||||
|
*/ |
||||
|
private LinkedList<String> xAxis; |
||||
|
|
||||
|
/** |
||||
|
* 活动次数 集合 |
||||
|
*/ |
||||
|
private LinkedList<String> actCountDataList; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,43 @@ |
|||||
|
package com.epmet.evaluationindex.screen.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 公益互助-各类总数汇总 |
||||
|
* @Author sun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class HeartSummaryResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 3860268744336541373L; |
||||
|
|
||||
|
/** |
||||
|
* 日期Id, 数据更新至:yyyyMMdd |
||||
|
*/ |
||||
|
private String dateId = ""; |
||||
|
|
||||
|
/** |
||||
|
* 活动次数 |
||||
|
*/ |
||||
|
private Integer actCount = 0; |
||||
|
/** |
||||
|
* 志愿者总数 |
||||
|
*/ |
||||
|
private Integer volunteerCount = 0; |
||||
|
/** |
||||
|
* 参与人次 |
||||
|
*/ |
||||
|
private Integer partiUserCount = 0; |
||||
|
/** |
||||
|
* 发放积分 |
||||
|
*/ |
||||
|
private Integer rewardPointCount = 0; |
||||
|
/** |
||||
|
* 公益时长 |
||||
|
*/ |
||||
|
private Integer heartTime = 0; |
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue