12 changed files with 240 additions and 10 deletions
@ -0,0 +1,33 @@ |
|||
package com.elink.esua.epdc.dto.item.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.Min; |
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Description 重点项目概况DTO |
|||
* @Author zy |
|||
* @Date 2020/2/11 |
|||
*/ |
|||
@Data |
|||
public class ItemSurveyFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 6544783947444092507L; |
|||
/** |
|||
* 主键 |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 第一页查询发起时的时间 |
|||
*/ |
|||
@NotBlank(message = "时间戳不能为空") |
|||
private String timestamp; |
|||
|
|||
/** |
|||
* 部门ID列表 |
|||
*/ |
|||
List<Long> gridIds; |
|||
} |
@ -0,0 +1,53 @@ |
|||
package com.elink.esua.epdc.dto.item.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description 重点项目概况DTO |
|||
* @Author zy |
|||
* @Date 2020/2/11 |
|||
*/ |
|||
@Data |
|||
public class ItemSurveyResultDTO implements Serializable { |
|||
// t1.unsolvedCount, -- notCloseNum
|
|||
// t2.dispatchCount, -- reportGridPlatformNum
|
|||
// t2.solvingCount, -- solvingNum
|
|||
// t2.solvedCount -- solvedNum
|
|||
|
|||
/** |
|||
* 未解决项目数 |
|||
*/ |
|||
private Integer unsolvedCount; |
|||
|
|||
/** |
|||
* 超时项目数 |
|||
*/ |
|||
private Integer timeoutCount; |
|||
|
|||
/** |
|||
* 未超时项目数 |
|||
*/ |
|||
private Integer noTimeoutCount; |
|||
|
|||
/** |
|||
* 区调度项目数 |
|||
*/ |
|||
private Integer dispatchCount; |
|||
|
|||
/** |
|||
* 解决中项目数 |
|||
*/ |
|||
private Integer solvingCount; |
|||
|
|||
/** |
|||
* 已解决项目数 |
|||
*/ |
|||
private Integer solvedCount; |
|||
|
|||
/** |
|||
* 更新时间 |
|||
*/ |
|||
private String updateTime; |
|||
} |
Loading…
Reference in new issue