转换单位

master
chen 4 years ago
parent c0e7a67444
commit e9e77aabc8
  1. 4
      dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/DgLoanNoticeServiceImpl.java

@ -161,7 +161,9 @@ public class DgLoanNoticeServiceImpl extends ServiceImpl<DgLoanNoticeMapper, DgL
alInsuranceList.setApplyTime(createTime); alInsuranceList.setApplyTime(createTime);
alInsuranceList.setPhone(phone); alInsuranceList.setPhone(phone);
alInsuranceList.setCustomerName(name); alInsuranceList.setCustomerName(name);
alInsuranceList.setGuaranteeAmount(loanMoney); //转换单位
BigDecimal quota = new BigDecimal("10000");
alInsuranceList.setGuaranteeAmount(loanMoney.multiply(quota));
alInsuranceList.setGuaranteeTime(loanTern); alInsuranceList.setGuaranteeTime(loanTern);
alInsuranceList.setAmountWide(amountWide); alInsuranceList.setAmountWide(amountWide);
alInsuranceList.setPaymentStatus(1); alInsuranceList.setPaymentStatus(1);

Loading…
Cancel
Save