Commit 4272417f by zhangxingmin

push

parent f442c78b
......@@ -28,6 +28,16 @@ public class ApiProductPlanMainInfoDto {
private String companyName;
/**
* 出单经纪公司(对账公司)ID
*/
private String reconciliationCompanyId;
/**
* 出单经纪公司(对账公司)名称
*/
private String reconciliationCompanyName;
/**
* 保险险种ID(产品上架信息绑定的保险险种参数)
*/
private String insuranceTypeId;
......@@ -100,6 +110,11 @@ public class ApiProductPlanMainInfoDto {
private Integer isPrepay;
/**
* 预缴年期
*/
private Integer prepaymentPeriod;
/**
* 是否追溯: 0-否, 1-是(字典)
*/
private Integer isTraceable;
......
......@@ -57,6 +57,18 @@ public class ProductPlan implements Serializable {
private String companyName;
/**
* 出单经纪公司(对账公司)ID
*/
@TableField("reconciliation_company_id")
private String reconciliationCompanyId;
/**
* 出单经纪公司(对账公司)名称
*/
@TableField("reconciliation_company_name")
private String reconciliationCompanyName;
/**
* 保险险种ID(产品上架信息绑定的保险险种参数)
*/
@TableField("insurance_type_id")
......@@ -141,6 +153,12 @@ public class ProductPlan implements Serializable {
private Integer isPrepay;
/**
* 预缴年期
*/
@TableField("prepayment_period")
private Integer prepaymentPeriod;
/**
* 是否追溯: 0-否, 1-是(字典)
*/
@TableField("is_traceable")
......
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