|
|
|
@ -59,6 +59,15 @@ |
|
|
|
<if test="module != null and module != ''"> |
|
|
|
and mo.DESCRIPTION like '%${module}%' |
|
|
|
</if> |
|
|
|
<if test="systemStatus != null and systemStatus != ''"> |
|
|
|
and ecr.SYSTEM = #{systemStatus} |
|
|
|
</if> |
|
|
|
<if test="mobile != null and mobile != ''"> |
|
|
|
and ecr.mobile like '%${mobile}%' |
|
|
|
</if> |
|
|
|
<if test="suggestion != null and suggestion != ''"> |
|
|
|
and ecr.SUGGESTION = #{suggestion} |
|
|
|
</if> |
|
|
|
<if test="startTime != null and startTime != '' and endTime != null and endTime != ''"> |
|
|
|
AND DATE_FORMAT( ecr.CREATED_TIME, '%Y-%m-%d' ) BETWEEN #{startTime} AND #{endTime} |
|
|
|
</if> |
|
|
|
|