|
|
|
@ -42,8 +42,11 @@
|
|
|
|
|
<if test="caseType!=null and caseType!=''">
|
|
|
|
|
AND case_type = #{caseType}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="caseTime!=null">
|
|
|
|
|
AND case_time LIKE concat('%',#{caseTime},'%')
|
|
|
|
|
<if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->
|
|
|
|
|
AND case_time >= #{params.beginTime}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
|
|
|
|
|
AND case_time <= #{params.endTime}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="caseGrade!=null and caseGrade!=''">
|
|
|
|
|
AND case_grade = #{caseGrade}
|
|
|
|
|