forked from rongchao/epmet-cloud-rizhao
12 changed files with 270 additions and 6 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; |
||||
|
} |
||||
Loading…
Reference in new issue