@ -221,7 +221,12 @@ public interface RpcApplyMapper extends BaseMapper<RpcApply> {
@Select("select max(number_index) from rpc_apply where year = #{year}")
IntegerselectMaxNuberIndex(Integeryear);
@Select("select d.short_name label, ROUND(sum(p.provide_relief) / 10000, 2) value from rpc_apply_person p left join rpc_apply r on p.rpc_id = r.rpc_id left join sup_depart d on r.second_depart_id = d.id where d.statistics_group_id = #{departGroupId} and r.crt_time between #{beginTime} and #{endTime} and r.type = 2 GROUP BY d.short_name order by value desc")
@Select("select d.short_name label, ROUND(sum(p.provide_relief) / 10000, 2) value "+
"from rpc_apply_person p left join rpc_apply r on p.rpc_id = r.rpc_id"+
" left join sup_depart d on r.second_depart_id = d.id "+