Commit 40d5b610 by jianan

新单跟进33

parent b77963f9
......@@ -620,6 +620,13 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
policy.setPolicyBizId(policyBizId);
policy.setPlanBizId(apiProductPlanMainInfoDto.getPlanBizId());
policy.setStatus(PolicyStatusEnum.INFORCE.getItemValue());
policy.setPaymentTerm(apiProductPlanMainInfoDto.getPaymentTerm());
//首期保费(不含徽费,预缴保费)每期保费
policy.setInitialPremium(apiProductPlanMainInfoDto.getEachIssuePremium());
//保险公司
policy.setInsurer(apiProductPlanMainInfoDto.getCompanyName());
//是否预缴
policy.setIsPrepaid(apiProductPlanMainInfoDto.getIsPrepay());
//转保声明选项(字典)
policy.setPolicyTransfer(policyTransfer);
policy.setCreateTime(new Date());
......
......@@ -85,7 +85,7 @@ public class Policy implements Serializable {
/**
* 供款年期(字典)
*/
private Integer paymentTerm;
private Object paymentTerm;
/**
* 付款频率(字典)
......@@ -110,7 +110,7 @@ public class Policy implements Serializable {
/**
* 首期保费(不含徽费,预缴保费)
*/
private Integer initialPremium;
private Object initialPremium;
/**
* 签单日期
......
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