15 changed files with 482 additions and 190 deletions
@ -0,0 +1,30 @@ |
|||||
|
package com.epmet.dto.extract.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* desc: 网格级别小组内的组成员数 |
||||
|
* |
||||
|
* @author LiuJanJun |
||||
|
* @date 2020/9/27 2:27 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GridGroupUserCountResultDTO implements Serializable { |
||||
|
|
||||
|
|
||||
|
private static final long serialVersionUID = -4729061928990808187L; |
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
private String gridId; |
||||
|
|
||||
|
private Integer memberCount; |
||||
|
/** |
||||
|
* 网格的pids |
||||
|
*/ |
||||
|
private String pids; |
||||
|
} |
@ -0,0 +1,68 @@ |
|||||
|
package com.epmet.dto.extract.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* desc: 议题投票统计结果DTO |
||||
|
* |
||||
|
* @author LiuJanJun |
||||
|
* @date 2020/9/27 11:22 上午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class IssueVoteStatisticalResultDTO implements Serializable { |
||||
|
|
||||
|
|
||||
|
private static final long serialVersionUID = 2631108929053690349L; |
||||
|
/** |
||||
|
* 主键ID |
||||
|
*/ |
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 议题ID |
||||
|
*/ |
||||
|
private String issueId; |
||||
|
|
||||
|
/** |
||||
|
* 统计日期 yyyy-MM-dd |
||||
|
*/ |
||||
|
private Date statisticalDate; |
||||
|
|
||||
|
/** |
||||
|
* 到该日的总赞成数 |
||||
|
*/ |
||||
|
private Integer supportCount; |
||||
|
|
||||
|
/** |
||||
|
* 到该日的总反对数 |
||||
|
*/ |
||||
|
private Integer oppositionCount; |
||||
|
|
||||
|
/** |
||||
|
* 到该日的总票数 |
||||
|
*/ |
||||
|
private Integer totalCount; |
||||
|
|
||||
|
/** |
||||
|
* 该日增量 |
||||
|
*/ |
||||
|
private Integer todayIncrement; |
||||
|
|
||||
|
/** |
||||
|
* 该日赞成增量 |
||||
|
*/ |
||||
|
private Integer supportIncrement; |
||||
|
|
||||
|
/** |
||||
|
* 该日反对增量 |
||||
|
*/ |
||||
|
private Integer oppositionIncrement; |
||||
|
|
||||
|
/** |
||||
|
* 到该日的应表决数 |
||||
|
*/ |
||||
|
private Integer votableCount; |
||||
|
} |
@ -0,0 +1,26 @@ |
|||||
|
package com.epmet.dto.extract.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* desc: 议题投票人数 |
||||
|
* |
||||
|
* @author LiuJanJun |
||||
|
* @date 2020/9/27 2:27 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class IssueVoteUserCountResultDTO implements Serializable { |
||||
|
|
||||
|
|
||||
|
private static final long serialVersionUID = -4729061928990808187L; |
||||
|
private String gridId; |
||||
|
private String issueId; |
||||
|
private Integer voteCount; |
||||
|
private Integer issueCount; |
||||
|
/** |
||||
|
* 网格的pids |
||||
|
*/ |
||||
|
private String pids; |
||||
|
} |
Loading…
Reference in new issue