|
|
@ -637,6 +637,12 @@ |
|
|
<if test="mobile != null and mobile != ''"> |
|
|
<if test="mobile != null and mobile != ''"> |
|
|
AND item.MOBILE like concat('%', #{mobile}, '%') |
|
|
AND item.MOBILE like concat('%', #{mobile}, '%') |
|
|
</if> |
|
|
</if> |
|
|
|
|
|
<!-- 供不满意评价列表使用,查询的是未结案的并且是评价为不满意的切评价时间超过24小时的数据 --> |
|
|
|
|
|
<if test='evaluationScore != null and evaluationScore != "" and evaluationScore == "0"'> |
|
|
|
|
|
AND item.item_state = '0' |
|
|
|
|
|
AND item.evaluation_score = '0' |
|
|
|
|
|
AND item.evaluation_time <![CDATA[ <= ]]> ( NOW() - interval 24 HOUR ) |
|
|
|
|
|
</if> |
|
|
ORDER BY |
|
|
ORDER BY |
|
|
item.CREATED_TIME DESC |
|
|
item.CREATED_TIME DESC |
|
|
</select> |
|
|
</select> |
|
|
|