This commit is contained in:
杜建超 2020-11-10 15:52:47 +08:00
parent f786cb20ec
commit c88a023d5d
2 changed files with 4 additions and 1 deletions

View File

@ -21,5 +21,8 @@ public class ChartStatistical {
@ApiModelProperty(value = "提示",name = "tip")
private String tip;
@ApiModelProperty(value = "等级",name = "scoreLevel")
private Long scoreLevel;
}

View File

@ -379,7 +379,7 @@
</select>
<select id="countNumByScoreLevel" resultType="com.lz.modules.performance.res.ChartStatistical">
SELECT count(score_level) num,case score_level WHEN 0 THEN '无等级' ELSE score_level END as 'desc' from lz_result_record where is_delete=0
SELECT count(score_level) num,score_level,case score_level WHEN 0 THEN '无等级' ELSE score_level END as 'desc' from lz_result_record where is_delete=0
and start_id =#{startId}
<if test="evaluationIds !=null and evaluationIds.size()!=0">
and evaluation_id in (