From e9ad5900626c5871ddcb5bc29b1d4f5d98dbcc6b Mon Sep 17 00:00:00 2001 From: river <1376754470@qq.com> Date: Thu, 25 Mar 2021 14:55:12 +0800 Subject: [PATCH] =?UTF-8?q?=E5=82=AC=E6=94=B6=E5=88=97=E8=A1=A8=E9=87=8C?= =?UTF-8?q?=E9=9D=A2=E7=9A=84=E8=BF=98=E6=AC=BE=E8=AE=B0=E5=BD=95=E7=BB=86?= =?UTF-8?q?=E8=8A=82=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../model/response/MoreOverdueDetailResponse.java | 2 +- .../guarantee/model/response/OverdueDetailResponse.java | 2 +- .../guarantee/service/impl/AlCollectionServiceImpl.java | 7 ++----- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/MoreOverdueDetailResponse.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/MoreOverdueDetailResponse.java index 1c5a163b..366a4953 100644 --- a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/MoreOverdueDetailResponse.java +++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/MoreOverdueDetailResponse.java @@ -46,7 +46,7 @@ public class MoreOverdueDetailResponse implements Serializable { private Integer numberOfCollection; @ApiModelProperty("还款记录") - private List alRepaymentEntryList; + private List alRepaymentEntryList; @ApiModelProperty("催收方式") private Integer collectionMethod; diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/OverdueDetailResponse.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/OverdueDetailResponse.java index 53d5da58..61b7f94b 100644 --- a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/OverdueDetailResponse.java +++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/model/response/OverdueDetailResponse.java @@ -46,5 +46,5 @@ public class OverdueDetailResponse implements Serializable { private Integer numberOfCollection; @ApiModelProperty("还款记录") - private List alRepaymentEntryList; + private List alRepaymentEntryList; } diff --git a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/AlCollectionServiceImpl.java b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/AlCollectionServiceImpl.java index 3fea0d0b..31d9f114 100644 --- a/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/AlCollectionServiceImpl.java +++ b/dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/AlCollectionServiceImpl.java @@ -12,10 +12,7 @@ import com.daqing.financial.guarantee.mapper.AlCollectionMapper; import com.daqing.financial.guarantee.mapper.AlRepaymentEntryMapper; import com.daqing.financial.guarantee.model.request.AlCollectionListRequest; import com.daqing.financial.guarantee.model.request.AlCollectionRequest; -import com.daqing.financial.guarantee.model.response.AlCollectionListResponse; -import com.daqing.financial.guarantee.model.response.AlCollectionResponse; -import com.daqing.financial.guarantee.model.response.MoreOverdueDetailResponse; -import com.daqing.financial.guarantee.model.response.OverdueDetailResponse; +import com.daqing.financial.guarantee.model.response.*; import com.daqing.financial.guarantee.service.IAlCollectionService; import com.daqing.framework.domain.crms.response.CrmsCode; import com.daqing.framework.domain.guarantee.AlCollection; @@ -146,7 +143,7 @@ public class AlCollectionServiceImpl extends ServiceImpl iPage = alRepaymentEntryMapper.pageByCondition(new Page(), null, null, insuranceId); + IPage iPage = alRepaymentEntryMapper.pageByCondition(new Page(), null, null, insuranceId); overdueDetailResponse.setAlRepaymentEntryList(iPage.getRecords()); return overdueDetailResponse; }