|
|
|
@ -2097,6 +2097,9 @@ |
|
|
|
<if test="serialNum != null and serialNum != ''"> |
|
|
|
and t1.SERIAL_NUM like '%${serialNum}%' |
|
|
|
</if> |
|
|
|
<if test="appealSource != null and appealSource != ''"> |
|
|
|
and t1.APPEAL_SOURCE = #{appealSource} |
|
|
|
</if> |
|
|
|
ORDER BY |
|
|
|
t1.CREATED_TIME DESC |
|
|
|
LIMIT #{pageIndex},#{pageSize} |
|
|
|
@ -2250,6 +2253,9 @@ |
|
|
|
<if test="evaluationScore != null and evaluationScore != ''"> |
|
|
|
and i.EVALUATION_SCORE = #{evaluationScore} |
|
|
|
</if> |
|
|
|
<if test="appealSource != null and appealSource != ''"> |
|
|
|
and i.APPEAL_SOURCE = #{appealSource} |
|
|
|
</if> |
|
|
|
<if test="startTime != null and startTime != '' and endTime != null and endTime != ''"> |
|
|
|
AND DATE_FORMAT( i.CREATED_TIME, '%Y-%m-%d' ) BETWEEN #{startTime} AND #{endTime} |
|
|
|
</if> |
|
|
|
|