22 changed files with 479 additions and 30 deletions
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.screen.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/8/19 3:10 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class MonthPieChartFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -3163410637094615814L; |
||||
|
|
||||
|
public interface MonthPieChart{} |
||||
|
|
||||
|
/** |
||||
|
* 机关ID |
||||
|
*/ |
||||
|
@NotBlank(message = "机关ID不能为空",groups = {MonthPieChart.class}) |
||||
|
private String agencyId; |
||||
|
} |
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.screen.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/8/19 2:40 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class YearAverageIndexFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -2389432085360116229L; |
||||
|
|
||||
|
public interface YearAverageIndex{} |
||||
|
|
||||
|
/** |
||||
|
* 机关Id |
||||
|
*/ |
||||
|
@NotBlank(message = "机关ID不能为空",groups = {YearAverageIndex.class}) |
||||
|
private String agencyId; |
||||
|
} |
@ -0,0 +1,30 @@ |
|||||
|
package com.epmet.screen.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/8/19 3:12 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class MonthPieChartResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 8399158251970739021L; |
||||
|
|
||||
|
/** |
||||
|
* 服务能力 |
||||
|
*/ |
||||
|
private Double serviceAbility = 0.0; |
||||
|
|
||||
|
/** |
||||
|
* 党建能力 |
||||
|
*/ |
||||
|
private Double partyDevAbility = 0.0; |
||||
|
|
||||
|
/** |
||||
|
* 治理能力 |
||||
|
*/ |
||||
|
private Double governAbility = 0.0; |
||||
|
} |
@ -0,0 +1,35 @@ |
|||||
|
package com.epmet.screen.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/8/19 2:45 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class YearAverageIndexResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 6453379153616899440L; |
||||
|
|
||||
|
/** |
||||
|
* 年度平均指数 |
||||
|
*/ |
||||
|
private Double yearAverageIndex = 0.0; |
||||
|
|
||||
|
/** |
||||
|
* 服务能力 |
||||
|
*/ |
||||
|
private Double serviceAbility = 0.0; |
||||
|
|
||||
|
/** |
||||
|
* 党建能力 |
||||
|
*/ |
||||
|
private Double partyDevAbility = 0.0; |
||||
|
|
||||
|
/** |
||||
|
* 治理能力 |
||||
|
*/ |
||||
|
private Double governAbility = 0.0; |
||||
|
} |
@ -0,0 +1,66 @@ |
|||||
|
package com.epmet.dto.screencoll.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 17、指数_按年统计 入参 |
||||
|
* @Auther: zhangyong |
||||
|
* @Date: 2020-08-18 09:59 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class IndexDataYearlyFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 客户id |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* yyyy |
||||
|
*/ |
||||
|
private String yearId; |
||||
|
|
||||
|
/** |
||||
|
* 组织类别 agency:组织;部门:department;网格:grid |
||||
|
*/ |
||||
|
private String orgType; |
||||
|
|
||||
|
/** |
||||
|
* 组织Id 可以为网格,机关id |
||||
|
*/ |
||||
|
private String orgId; |
||||
|
|
||||
|
/** |
||||
|
* 上级组织Id |
||||
|
*/ |
||||
|
private String parentId; |
||||
|
|
||||
|
/** |
||||
|
* 组织名称 |
||||
|
*/ |
||||
|
private String orgName; |
||||
|
|
||||
|
/** |
||||
|
* 总指数 |
||||
|
*/ |
||||
|
private Integer indexTotal; |
||||
|
|
||||
|
/** |
||||
|
* 党建能力指数 |
||||
|
*/ |
||||
|
private Integer partyDevAblity; |
||||
|
|
||||
|
/** |
||||
|
* 服务能力指数 |
||||
|
*/ |
||||
|
private Integer serviceAblity; |
||||
|
|
||||
|
/** |
||||
|
* 治理能力指数 |
||||
|
*/ |
||||
|
private Integer governAblity; |
||||
|
} |
Loading…
Reference in new issue