11 changed files with 261 additions and 5 deletions
@ -0,0 +1,31 @@ |
|||||
|
package com.epmet.plugins.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
|
||||
|
/** |
||||
|
* 7、【工作日志】党员志愿者服务近12月趋势图 |
||||
|
* |
||||
|
* @author yinzuomei@elink-cn.com |
||||
|
* @date 2021/2/27 19:53 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class VoluntaryServiceTrendFormDTO { |
||||
|
/** |
||||
|
* 当前组织id |
||||
|
*/ |
||||
|
@NotBlank(message = "agencyId不能为空") |
||||
|
private String agencyId; |
||||
|
|
||||
|
@NotBlank(message = "目前只有平阴在传,默认赋值:370124") |
||||
|
private String areaCode; |
||||
|
|
||||
|
@NotBlank(message = "customerId不能为空") |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 截止到某月格式:yyyyMM;目前没有让大屏前端赋值,代码默认为为上个月 |
||||
|
*/ |
||||
|
private String endMonthId; |
||||
|
} |
@ -0,0 +1,30 @@ |
|||||
|
package com.epmet.plugins.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 7、【工作日志】党员志愿者服务近12月趋势图 |
||||
|
* |
||||
|
* @author yinzuomei@elink-cn.com |
||||
|
* @date 2021/2/28 13:41 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class VoluntaryServiceTrendDTO implements Serializable { |
||||
|
private String monthId; |
||||
|
/** |
||||
|
* 组织次数 |
||||
|
*/ |
||||
|
private Integer organizeTotal; |
||||
|
|
||||
|
/** |
||||
|
* 参与人数 |
||||
|
*/ |
||||
|
private Integer participateUserTotal; |
||||
|
|
||||
|
/** |
||||
|
* 平均参与人数 |
||||
|
*/ |
||||
|
private Integer avgParticipateUserTotal; |
||||
|
} |
@ -0,0 +1,23 @@ |
|||||
|
package com.epmet.plugins.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.ArrayList; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* 7、【工作日志】党员志愿者服务近12月趋势图 |
||||
|
* |
||||
|
* @author yinzuomei@elink-cn.com |
||||
|
* @date 2021/2/27 19:55 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class VoluntaryServiceTrendResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -560895826884970305L; |
||||
|
private List<String> xAxis=new ArrayList<>(); |
||||
|
//组织次数:organize;参与人数:joinuser;平均参与人数:avguser
|
||||
|
private List<Integer> organizeList=new ArrayList<>(); |
||||
|
private List<Integer> joinUserList=new ArrayList<>(); |
||||
|
private List<Integer> avgUserList=new ArrayList<>(); |
||||
|
} |
Loading…
Reference in new issue