Commit 80590225 by zhangxingmin

push

parent 83222b93
...@@ -723,6 +723,8 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService { ...@@ -723,6 +723,8 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
follow.setReconciliationCompany(apiProductPlanMainInfoDto.getReconciliationCompanyName()); follow.setReconciliationCompany(apiProductPlanMainInfoDto.getReconciliationCompanyName());
// 对账公司业务ID(从产品计划获取的对账公司ID) // 对账公司业务ID(从产品计划获取的对账公司ID)
follow.setReconciliationCompanyBizId(apiProductPlanMainInfoDto.getReconciliationCompanyId()); follow.setReconciliationCompanyBizId(apiProductPlanMainInfoDto.getReconciliationCompanyId());
follow.setReconciliationCompanyCode(apiProductPlanMainInfoDto.getReconciliationCompanyCode());
// 币种 // 币种
follow.setPolicyCurrency(apiProductPlanMainInfoDto.getPolicyCurrency()); follow.setPolicyCurrency(apiProductPlanMainInfoDto.getPolicyCurrency());
// 供款年期 // 供款年期
......
...@@ -38,6 +38,11 @@ public class ApiProductPlanMainInfoDto { ...@@ -38,6 +38,11 @@ public class ApiProductPlanMainInfoDto {
private String reconciliationCompanyName; private String reconciliationCompanyName;
/** /**
* 出单经纪公司(对账公司)编码
*/
private String reconciliationCompanyCode;
/**
* 保险险种ID(产品上架信息绑定的保险险种参数) * 保险险种ID(产品上架信息绑定的保险险种参数)
*/ */
private String insuranceTypeId; private String insuranceTypeId;
......
...@@ -69,6 +69,12 @@ public class ProductPlan implements Serializable { ...@@ -69,6 +69,12 @@ public class ProductPlan implements Serializable {
private String reconciliationCompanyName; private String reconciliationCompanyName;
/** /**
* 出单经纪公司(对账公司)编码 TODO
*/
@TableField("reconciliation_company_code")
private String reconciliationCompanyCode;
/**
* 保险险种ID(产品上架信息绑定的保险险种参数) * 保险险种ID(产品上架信息绑定的保险险种参数)
*/ */
@TableField("insurance_type_id") @TableField("insurance_type_id")
......
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