Browse Source

下级指数排行

dev_shibei_match
zxc 5 years ago
parent
commit
c9c78f3f56
  1. 22
      epmet-module/data-report/data-report-client/src/main/java/com/epmet/evaluationindex/screen/dto/result/AnNingSubAgencyIndexRankResultDTO.java
  2. 3
      epmet-module/data-report/data-report-server/src/main/resources/mapper/screen/ScreenIndexDataMonthlyDao.xml

22
epmet-module/data-report/data-report-client/src/main/java/com/epmet/evaluationindex/screen/dto/result/AnNingSubAgencyIndexRankResultDTO.java

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

3
epmet-module/data-report/data-report-server/src/main/resources/mapper/screen/ScreenIndexDataMonthlyDao.xml

@ -69,6 +69,9 @@
service_ablity * SERVICE_ABLITY_WEIGHT AS serviceAbility, service_ablity * SERVICE_ABLITY_WEIGHT AS serviceAbility,
party_dev_ablity * PARTY_DEV_WEIGHT AS partyDevAbility, party_dev_ablity * PARTY_DEV_WEIGHT AS partyDevAbility,
govern_ablity * GOVERN_ABLITY_WEIGHT AS governAbility, govern_ablity * GOVERN_ABLITY_WEIGHT AS governAbility,
PARTY_DEV_WEIGHT AS partyWeight,
GOVERN_ABLITY_WEIGHT AS governWeight,
SERVICE_ABLITY_WEIGHT AS serviceWeight,
ORG_ID orgId, ORG_ID orgId,
ORG_TYPE orgType ORG_TYPE orgType
FROM FROM

Loading…
Cancel
Save