|
|
@@ -127,10 +127,10 @@
|
|
|
AND b.user_mobile LIKE CONCAT("%",#{po.mobile},"%")
|
|
|
</if>
|
|
|
<if test="po.startTime != null and po.startTime != ''">
|
|
|
- and ort.create_time>= #{po.startTime}
|
|
|
+ and a.creation_date>= #{po.startTime}
|
|
|
</if>
|
|
|
<if test="po.endTime != null and po.endTime != ''">
|
|
|
- and ort.create_time<= #{po.endTime}
|
|
|
+ and a.creation_date<= #{po.endTime}
|
|
|
</if>
|
|
|
<if test="po.businessType != null and po.businessType != ''">
|
|
|
<if test="po.businessType == 'CZ'">
|
|
|
@@ -147,6 +147,7 @@
|
|
|
</if>
|
|
|
</if>
|
|
|
</where>
|
|
|
+ order by a.creation_date desc
|
|
|
</select>
|
|
|
|
|
|
</mapper>
|