|
@@ -178,6 +178,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="userId != null "> and s.user_id = #{userId} = #{userId}</if>
|
|
|
<if test="enterpriseName != null and enterpriseName != ''"> and l.enterprise_name like concat('%', #{enterpriseName}, '%')</if>
|
|
|
<if test="applicationAmount != null "> and l.application_amount = #{applicationAmount}</if>
|
|
|
+ <if test="reviewTime != null "> and l.review_time = #{reviewTime}</if>
|
|
|
GROUP BY l.loan_application_id
|
|
|
ORDER BY review_time desc
|
|
|
</select>-->
|
|
@@ -262,6 +263,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="userId != null "> and s.user_id = #{userId} = #{userId}</if>
|
|
|
<if test="enterpriseName != null and enterpriseName != ''"> and l.enterprise_name like concat('%', #{enterpriseName}, '%')</if>
|
|
|
<if test="applicationAmount != null "> and l.application_amount = #{applicationAmount}</if>
|
|
|
+ <if test="reviewTime != null "> and l.review_time = #{reviewTime}</if>
|
|
|
GROUP BY l.loan_application_id
|
|
|
ORDER BY review_time desc
|
|
|
</select>
|