forked from rongchao/epmet-cloud-rizhao
7 changed files with 200 additions and 7 deletions
@ -0,0 +1,35 @@ |
|||||
|
package com.epmet.dataaggre.dto.govproject.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
||||
|
import lombok.Data; |
||||
|
import lombok.NoArgsConstructor; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description 赋能平台【项目处理分析】事件总数查询-接口入参 |
||||
|
* @Auth sun |
||||
|
*/ |
||||
|
@NoArgsConstructor |
||||
|
@Data |
||||
|
public class ProjectTotalFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -8515172319313536407L; |
||||
|
//组织Id
|
||||
|
@NotBlank(message = "组织ID不能为空", groups = {Total.class, Monthincr.class, Statuslist.class}) |
||||
|
private String agencyId; |
||||
|
//日期yyyymmdd
|
||||
|
@NotBlank(message = "组织ID不能为空", groups = {Total.class, Monthincr.class, Statuslist.class}) |
||||
|
private String dateId; |
||||
|
//状态:待处理 pending,结案closed
|
||||
|
@NotBlank(message = "项目状态不能为空", groups = {Statuslist.class}) |
||||
|
private String status; |
||||
|
|
||||
|
public interface Total extends CustomerClientShowGroup { |
||||
|
} |
||||
|
public interface Monthincr extends CustomerClientShowGroup { |
||||
|
} |
||||
|
public interface Statuslist extends CustomerClientShowGroup { |
||||
|
} |
||||
|
|
||||
|
} |
@ -0,0 +1,20 @@ |
|||||
|
package com.epmet.dataaggre.dto.govproject.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description 赋能平台【项目处理分析】进12月新增项目折线图-接口返参 |
||||
|
* @Auth sun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProjectMonthIncrResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 6188316867855643263L; |
||||
|
|
||||
|
//横坐标值
|
||||
|
private String value; |
||||
|
//横坐标
|
||||
|
private Integer type; |
||||
|
|
||||
|
} |
@ -0,0 +1,28 @@ |
|||||
|
package com.epmet.dataaggre.dto.govproject.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description 赋能平台【项目处理分析】事件总数查询-接口返参 |
||||
|
* @Auth sun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProjectStatusListResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 6188316867855643263L; |
||||
|
|
||||
|
//组织Id
|
||||
|
private String agencyId; |
||||
|
//项目Id
|
||||
|
private String projectId; |
||||
|
//来源:议题issue 项目立项:agency 事件:resi_event
|
||||
|
private Integer origin; |
||||
|
//状态:待处理 pending,结案closed
|
||||
|
private Integer status; |
||||
|
//经度
|
||||
|
private Integer longitude; |
||||
|
//纬度
|
||||
|
private Integer dimension; |
||||
|
|
||||
|
} |
@ -0,0 +1,34 @@ |
|||||
|
package com.epmet.dataaggre.dto.govproject.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description 赋能平台【项目处理分析】事件总数查询-接口返参 |
||||
|
* @Auth sun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProjectTotalResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 6188316867855643263L; |
||||
|
|
||||
|
//组织Id
|
||||
|
private String agencyId; |
||||
|
//日期yyyymmdd
|
||||
|
private String dateId; |
||||
|
//项目总数
|
||||
|
private Integer projectTotal; |
||||
|
//较昨日数
|
||||
|
private Integer dateIncr; |
||||
|
//较上月数
|
||||
|
private Integer monthIncr; |
||||
|
//未结案项目数
|
||||
|
private Integer pendingTotal; |
||||
|
//为结案项目占比 xx%
|
||||
|
private String pendingRatio; |
||||
|
//已结案项目数
|
||||
|
private Integer closedTotal; |
||||
|
//已结案项目占比
|
||||
|
private String closedRatio; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue