Commit 1bf6170d by zhangxingmin

push

parent c278d1d0
......@@ -182,7 +182,7 @@ public class PolicyServiceImpl extends ServiceImpl<PolicyMapper, Policy>
policyFollow.setCategoryCode(dto.getInsuranceTypeCode());
policyFollow.setInsuranceCategoryBizId(dto.getInsuranceTypeId());
policyFollow.setIssueNumber(dto.getIssueNumber());
policyFollow.setGuaranteePeriod(parseInteger(dto.getGuaranteePeriod()));
policyFollow.setGuaranteePeriod(StringUtils.isNotBlank(dto.getGuaranteePeriod()) ? Integer.parseInt(dto.getGuaranteePeriod()) : null);
policyFollow.setSumInsured(parseBigDecimal(dto.getSumInsured()));
policyFollow.setPaymentFrequency(dto.getPaymentFrequency());
policyFollow.setEachIssuePremium(eachIssuePremium);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment