|
|
@ -246,16 +246,16 @@ public class LoanFinOtherPolicyService extends MybatisBaseService<LoanFinOtherPo |
|
|
|
} |
|
|
|
String otherPolicyName = ""; |
|
|
|
if (StringUtils.isNotBlank(entity.getBankShortName())) { |
|
|
|
otherPolicyName = otherPolicyName + entity.getBankShortName(); |
|
|
|
otherPolicyName = otherPolicyName + entity.getBankShortName() + " "; |
|
|
|
} |
|
|
|
if (StringUtils.isNotBlank(entity.getProductTypeValue())) { |
|
|
|
otherPolicyName = otherPolicyName + entity.getProductTypeValue(); |
|
|
|
otherPolicyName = otherPolicyName + entity.getProductTypeValue() + " "; |
|
|
|
} |
|
|
|
if (StringUtils.isNotBlank(entity.getPeriodKey())) { |
|
|
|
otherPolicyName = otherPolicyName + entity.getPeriod() + "期"; |
|
|
|
otherPolicyName = otherPolicyName + entity.getPeriod() + "期" + " "; |
|
|
|
} |
|
|
|
if (entity.getMaxLoanRatio() != null) { |
|
|
|
otherPolicyName = otherPolicyName + entity.getMaxLoanRatio(); |
|
|
|
otherPolicyName = otherPolicyName + entity.getMaxLoanRatio() + "%"; |
|
|
|
} |
|
|
|
entity.setOtherPolicyName(otherPolicyName); |
|
|
|
if (StringUtils.isNotBlank(useDeptSid)) { |
|
|
@ -297,16 +297,16 @@ public class LoanFinOtherPolicyService extends MybatisBaseService<LoanFinOtherPo |
|
|
|
} |
|
|
|
String otherPolicyName = ""; |
|
|
|
if (StringUtils.isNotBlank(entity.getBankShortName())) { |
|
|
|
otherPolicyName = otherPolicyName + entity.getBankShortName(); |
|
|
|
otherPolicyName = otherPolicyName + entity.getBankShortName() + " "; |
|
|
|
} |
|
|
|
if (StringUtils.isNotBlank(entity.getProductTypeValue())) { |
|
|
|
otherPolicyName = otherPolicyName + entity.getProductTypeValue(); |
|
|
|
otherPolicyName = otherPolicyName + entity.getProductTypeValue() + " "; |
|
|
|
} |
|
|
|
if (StringUtils.isNotBlank(entity.getPeriodKey())) { |
|
|
|
otherPolicyName = otherPolicyName + entity.getPeriod() + "期"; |
|
|
|
otherPolicyName = otherPolicyName + entity.getPeriod() + "期" + " "; |
|
|
|
} |
|
|
|
if (entity.getMaxLoanRatio() != null) { |
|
|
|
otherPolicyName = otherPolicyName + entity.getMaxLoanRatio(); |
|
|
|
otherPolicyName = otherPolicyName + entity.getMaxLoanRatio() + "%"; |
|
|
|
} |
|
|
|
entity.setOtherPolicyName(otherPolicyName); |
|
|
|
if (StringUtils.isNotBlank(useDeptSid)) { |
|
|
|