|
|
|
@ -39,6 +39,15 @@
|
|
|
|
|
<if test="caseName!=null and caseName!=''">
|
|
|
|
|
AND case_name LIKE concat('%',#{caseName},'%')
|
|
|
|
|
</if>
|
|
|
|
|
<if test="caseType!=null and caseType!=''">
|
|
|
|
|
AND case_type = #{caseType}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="caseTime!=null">
|
|
|
|
|
AND case_time LIKE concat('%',#{caseTime},'%')
|
|
|
|
|
</if>
|
|
|
|
|
<if test="caseGrade!=null and caseGrade!=''">
|
|
|
|
|
AND case_grade = #{caseGrade}
|
|
|
|
|
</if>
|
|
|
|
|
</trim>
|
|
|
|
|
ORDER BY create_time DESC
|
|
|
|
|
</select>
|
|
|
|
|