@ -16,6 +16,11 @@ public class checkResultRequest {
@ApiModelProperty(value = "计划年份")
private String plannedYear;
/**
* 等级
*/
@ApiModelProperty(value = "等级")
private String[] riskLevel;
* 计划月份
@ -171,6 +171,12 @@
#{item}
</foreach>
</if>
<if test="req.riskLevel != null and req.riskLevel.length > 0">
AND c.RISK_LEVEL IN
<foreach item="item" collection="req.riskLevel" open="(" separator="," close=")">
</where>
order by law_sort,planned_month+0
</select>