|
|
@ -88,9 +88,9 @@ |
|
|
|
resultType="com.epmet.evaluationindex.screen.dto.result.AnNingSubAgencyIndexRankResultDTO"> |
|
|
|
SELECT |
|
|
|
score.org_name AS `NAME`, |
|
|
|
score.service_ablity * score.SERVICE_ABLITY_WEIGHT AS serviceAbility, |
|
|
|
score.party_dev_ablity * score.PARTY_DEV_WEIGHT AS partyDevAbility, |
|
|
|
score.govern_ablity * score.GOVERN_ABLITY_WEIGHT AS governAbility, |
|
|
|
ROUND(ROUND(score.service_ablity,1) * score.SERVICE_ABLITY_WEIGHT, 1) AS serviceAbility, |
|
|
|
ROUND(ROUND(score.party_dev_ablity,1) * score.PARTY_DEV_WEIGHT, 1) AS partyDevAbility, |
|
|
|
ROUND(ROUND(score.govern_ablity,1) * score.GOVERN_ABLITY_WEIGHT, 1) AS governAbility, |
|
|
|
score.PARTY_DEV_WEIGHT AS partyWeight, |
|
|
|
score.GOVERN_ABLITY_WEIGHT AS governWeight, |
|
|
|
score.SERVICE_ABLITY_WEIGHT AS serviceWeight, |
|
|
@ -156,13 +156,13 @@ |
|
|
|
org_id AS "orgId", |
|
|
|
org_name AS "orgName", |
|
|
|
<if test="indexCode != null and indexCode != '' and indexCode == 'dangjiannengli'"> |
|
|
|
round((party_dev_ablity * party_dev_weight),1) AS "score" |
|
|
|
round(round(party_dev_ablity,1) * party_dev_weight,1) AS "score" |
|
|
|
</if> |
|
|
|
<if test="indexCode != null and indexCode != '' and indexCode == 'zhilinengli'"> |
|
|
|
round((govern_ablity * govern_ablity_weight),1) AS "score" |
|
|
|
round(round(govern_ablity,1) * govern_ablity_weight,1) AS "score" |
|
|
|
</if> |
|
|
|
<if test="indexCode != null and indexCode != '' and indexCode == 'fuwunengli'"> |
|
|
|
round((service_ablity * service_ablity_weight),1) AS "score" |
|
|
|
round(round(service_ablity,1) * service_ablity_weight,1) AS "score" |
|
|
|
</if> |
|
|
|
FROM |
|
|
|
screen_index_data_monthly |
|
|
@ -406,9 +406,9 @@ |
|
|
|
resultType="com.epmet.evaluationindex.screen.dto.result.AnNingSubAgencyIndexRankResultDTO"> |
|
|
|
SELECT |
|
|
|
score.org_name AS `NAME`, |
|
|
|
score.service_ablity * score.SERVICE_ABLITY_WEIGHT AS serviceAbility, |
|
|
|
score.party_dev_ablity * score.PARTY_DEV_WEIGHT AS partyDevAbility, |
|
|
|
score.govern_ablity * score.GOVERN_ABLITY_WEIGHT AS governAbility, |
|
|
|
ROUND(ROUND(score.service_ablity,1)*score.SERVICE_ABLITY_WEIGHT, 1)AS serviceAbility, |
|
|
|
ROUND(ROUND(score.party_dev_ablity,1) * score.PARTY_DEV_WEIGHT, 1) AS partyDevAbility, |
|
|
|
ROUND(ROUND(score.govern_ablity,1) * score.GOVERN_ABLITY_WEIGHT, 1) AS governAbility, |
|
|
|
score.PARTY_DEV_WEIGHT AS partyWeight, |
|
|
|
score.GOVERN_ABLITY_WEIGHT AS governWeight, |
|
|
|
score.SERVICE_ABLITY_WEIGHT AS serviceWeight, |
|
|
|