|
|
@ -1,5 +1,6 @@ |
|
|
|
package com.epmet.evaluationindex.screen.dto.result; |
|
|
|
|
|
|
|
import com.epmet.commons.tools.constant.NumConstant; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
@ -38,6 +39,21 @@ public class AnNingSubAgencyIndexRankResultDTO implements Serializable { |
|
|
|
*/ |
|
|
|
private Double serviceAbility = 0.0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 党建能力权重 |
|
|
|
*/ |
|
|
|
private Double partyWeight; |
|
|
|
|
|
|
|
/** |
|
|
|
* 治理能力权重 |
|
|
|
*/ |
|
|
|
private Double governWeight; |
|
|
|
|
|
|
|
/** |
|
|
|
* 服务能力权重 |
|
|
|
*/ |
|
|
|
private Double serviceWeight; |
|
|
|
|
|
|
|
/** |
|
|
|
* 组织id或者网格id |
|
|
|
*/ |
|
|
@ -47,4 +63,10 @@ public class AnNingSubAgencyIndexRankResultDTO implements Serializable { |
|
|
|
* 组织类型 |
|
|
|
*/ |
|
|
|
private String orgType = ""; |
|
|
|
|
|
|
|
public AnNingSubAgencyIndexRankResultDTO() { |
|
|
|
this.partyWeight = NumConstant.ZERO_DOT_ZERO; |
|
|
|
this.governWeight = NumConstant.ZERO_DOT_ZERO; |
|
|
|
this.serviceWeight = NumConstant.ZERO_DOT_ZERO; |
|
|
|
} |
|
|
|
} |
|
|
|