12 changed files with 327 additions and 10 deletions
@ -0,0 +1,26 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2021/12/29 10:56 上午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class DailyStatisticalVoteJob implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -3685299478100771134L; |
||||
|
|
||||
|
private String customerId; |
||||
|
|
||||
|
private String dateId; |
||||
|
|
||||
|
private String startDate; |
||||
|
|
||||
|
private String endDate; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,69 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import com.epmet.commons.tools.constant.NumConstant; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2021/12/29 1:52 下午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class DailyStatisticalVoteJobResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 5266996778036448163L; |
||||
|
|
||||
|
private String issueId; |
||||
|
|
||||
|
/** |
||||
|
* 统计日期 |
||||
|
*/ |
||||
|
private String statisticalDate; |
||||
|
|
||||
|
/** |
||||
|
* 到该日的总赞成数 |
||||
|
*/ |
||||
|
private Integer supportCount; |
||||
|
|
||||
|
/** |
||||
|
* 到该日的总反对数 |
||||
|
*/ |
||||
|
private Integer oppositionCount; |
||||
|
|
||||
|
/** |
||||
|
* 到该日的总票数 |
||||
|
*/ |
||||
|
private Integer totalCount; |
||||
|
|
||||
|
/** |
||||
|
* 该日增量 |
||||
|
*/ |
||||
|
private Integer todayIncrement; |
||||
|
|
||||
|
/** |
||||
|
* 该日赞成增量 |
||||
|
*/ |
||||
|
private Integer supportIncrement; |
||||
|
|
||||
|
/** |
||||
|
* 该日反对增量 |
||||
|
*/ |
||||
|
private Integer oppositionIncrement; |
||||
|
|
||||
|
/** |
||||
|
* 应表决数 |
||||
|
*/ |
||||
|
private Integer votableCount; |
||||
|
|
||||
|
public DailyStatisticalVoteJobResultDTO() { |
||||
|
this.supportCount = NumConstant.ZERO; |
||||
|
this.oppositionCount = NumConstant.ZERO; |
||||
|
this.totalCount = NumConstant.ZERO; |
||||
|
this.todayIncrement = NumConstant.ZERO; |
||||
|
this.supportIncrement = NumConstant.ZERO; |
||||
|
this.oppositionIncrement = NumConstant.ZERO; |
||||
|
this.votableCount = NumConstant.ZERO; |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue