搜索条件修改

main
dongdingding 7 months ago
parent 1a6421aaba
commit 229a85edd2

@ -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=")">
#{item}
</foreach>
</if>
</where>
order by law_sort,planned_month+0
</select>

Loading…
Cancel
Save