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; }