LIVE_YE 11 miesięcy temu
rodzic
commit
641843a9e7

+ 2 - 0
ruoyi-system/src/main/resources/mapper/system/LoanApplicationMapper.xml

@@ -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>