master
shijie 4 years ago
parent e90656db47
commit c14be59329
  1. 2
      dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/DgAssetsInvestigationServiceImpl.java
  2. 3
      dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/service/impl/DgGuaranteeAssignUserServiceImpl.java

@ -437,7 +437,7 @@ public class DgAssetsInvestigationServiceImpl extends ServiceImpl<DgAssetsInvest
} }
String reason = remark+otherRemark; String reason = remark+otherRemark;
String loanMoney = String.valueOf(approvalAssetsRequest.getAmount());//金额 String loanMoney = String.valueOf(approvalAssetsRequest.getAmount());//金额
if(loanMoney == null){ if(loanMoney == "null"){
loanMoney = ""; loanMoney = "";
} }
String loanTerm = approvalAssetsRequest.getTerm();//期限 String loanTerm = approvalAssetsRequest.getTerm();//期限

@ -591,7 +591,8 @@ public class DgGuaranteeAssignUserServiceImpl extends ServiceImpl<DgGuaranteeAss
} }
String reason = remark+otherRemark; String reason = remark+otherRemark;
String loanMoney = String.valueOf(approvalGuaranteeRequest.getAmount());//金额 String loanMoney = String.valueOf(approvalGuaranteeRequest.getAmount());//金额
if(loanMoney == null){
if(loanMoney == "null"){
loanMoney = ""; loanMoney = "";
} }
String loanTerm = approvalGuaranteeRequest.getTerm();//期限 String loanTerm = approvalGuaranteeRequest.getTerm();//期限

Loading…
Cancel
Save