Ver Fonte

个贷报告模版修改

wucl há 4 meses atrás
pai
commit
2181cdedc5

+ 3 - 3
dao/src/main/resources/mapper/PaymentCollectionMapper.xml

@@ -40,7 +40,7 @@
         pc.item_id,
         pc.NAME,
         pc.payment_date,
-        fc.claim_amount,
+        pc.amount as claimAmount,
         fc.claim_datetime ,
         frf.payer,
         frf.pay_datetime,
@@ -87,9 +87,9 @@
             </foreach>
         </if>
         <if test="dto!=null and dto.startDate!=null and dto.endDate!=null">
-            AND pc.created BETWEEN #{dto.startDate} AND #{dto.endDate}
+            AND fc.claim_datetime BETWEEN #{dto.startDate} AND #{dto.endDate}
         </if>
-        order by pc.payment_date DESC
+        order by fc.claim_datetime DESC
     </sql>
 
     <select id="page" parameterType="com.dayou.vo.PaymentCollectionVO" resultType="com.dayou.vo.PaymentCollectionVO">

Diff do ficheiro suprimidas por serem muito extensas
+ 177 - 65
service/src/main/java/com/dayou/service/impl/PersonalProductionServiceImpl.java