@ -67,8 +67,8 @@ public class IndexController {
}
/**
* @Description 4、下级部门指数排行
* @param subAgencyIndexRankFormDTO
* @Description 4、下级组织/部门指数排行 (不包含部门的数据)
* @author zxc
* @date 2020/8/20 10:02 上午
*/
@ -54,8 +54,8 @@ public interface ScreenIndexDataMonthlyDao{
List<MonthBarchartResult> selectMonthBarchart(@Param("agencyId")String agencyId);
* @date 2020/8/20 10:04 上午
@ -38,8 +38,8 @@ public interface IndexService {
MonthBarchartResultDTO monthBarchart(MonthBarchartFormDTO monthBarchartFormDTO);
@ -179,8 +179,8 @@ public class IndexServiceImpl implements IndexService {
@ -43,7 +43,7 @@
LIMIT 12
</select>
<!-- 下级部门指数排行 -->
<!-- 下级组织/部门指数排行 (不包含部门的数据) -->
<select id="selectSubAgencyIndexRank" parameterType="com.epmet.evaluationindex.screen.dto.form.SubAgencyIndexRankFormDTO" resultType="com.epmet.evaluationindex.screen.dto.result.SubAgencyIndexRankResultDTO">
SELECT
org_name AS NAME,
@ -57,6 +57,7 @@
del_flag = '0'
AND parent_id = #{agencyId}
AND year_id = #{yearId}
AND ORG_TYPE != 'department'
ORDER BY index_total DESC
LIMIT #{topNum}