Commit cfe35c55 authored by hongguangwu's avatar hongguangwu

MVP1.7.17-商险续签待办3

parent 4d7c5874
...@@ -208,6 +208,14 @@ public class TInsurancePreRenewDetail extends BaseEntity { ...@@ -208,6 +208,14 @@ public class TInsurancePreRenewDetail extends BaseEntity {
@ExcelProperty("险种名称") @ExcelProperty("险种名称")
@Schema(description = "险种名称") @Schema(description = "险种名称")
private String insuranceTypeName; private String insuranceTypeName;
/**
* 原购买标准
*/
@ExcelAttribute(name = "原购买标准", maxLength = 32)
@Length(max = 32, message = "原购买标准不能超过32个字符")
@ExcelProperty("原购买标准")
@Schema(description = "原购买标准")
private String buyStandardOld;
/** /**
* 购买标准 * 购买标准
*/ */
......
...@@ -326,6 +326,7 @@ public class TInsuranceWarnServiceImpl extends ServiceImpl<TInsuranceWarnMapper, ...@@ -326,6 +326,7 @@ public class TInsuranceWarnServiceImpl extends ServiceImpl<TInsuranceWarnMapper,
detail.setConfigName(vo.getConfigName()); detail.setConfigName(vo.getConfigName());
detail.setInsuranceCompanyName(vo.getInsuranceCompanyName()); detail.setInsuranceCompanyName(vo.getInsuranceCompanyName());
detail.setInsuranceTypeName(vo.getInsuranceTypeName()); detail.setInsuranceTypeName(vo.getInsuranceTypeName());
detail.setBuyStandardOld(vo.getBuyStandard());
detail.setBuyStandard(vo.getBuyStandard()); detail.setBuyStandard(vo.getBuyStandard());
detail.setInsuranceProvinceName(vo.getInsuranceProvinceName()); detail.setInsuranceProvinceName(vo.getInsuranceProvinceName());
detail.setInsuranceCityName(vo.getInsuranceCityName()); detail.setInsuranceCityName(vo.getInsuranceCityName());
......
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
<result property="configName" column="CONFIG_NAME"/> <result property="configName" column="CONFIG_NAME"/>
<result property="insuranceCompanyName" column="INSURANCE_COMPANY_NAME"/> <result property="insuranceCompanyName" column="INSURANCE_COMPANY_NAME"/>
<result property="insuranceTypeName" column="INSURANCE_TYPE_NAME"/> <result property="insuranceTypeName" column="INSURANCE_TYPE_NAME"/>
<result property="buyStandardOld" column="BUY_STANDARD_OLD"/>
<result property="buyStandard" column="BUY_STANDARD"/> <result property="buyStandard" column="BUY_STANDARD"/>
<result property="insuranceProvinceName" column="INSURANCE_PROVINCE_NAME"/> <result property="insuranceProvinceName" column="INSURANCE_PROVINCE_NAME"/>
<result property="insuranceCityName" column="INSURANCE_CITY_NAME"/> <result property="insuranceCityName" column="INSURANCE_CITY_NAME"/>
...@@ -92,6 +93,7 @@ ...@@ -92,6 +93,7 @@
a.CONFIG_NAME, a.CONFIG_NAME,
a.INSURANCE_COMPANY_NAME, a.INSURANCE_COMPANY_NAME,
a.INSURANCE_TYPE_NAME, a.INSURANCE_TYPE_NAME,
a.BUY_STANDARD_OLD,
a.BUY_STANDARD, a.BUY_STANDARD,
a.INSURANCE_PROVINCE_NAME, a.INSURANCE_PROVINCE_NAME,
a.INSURANCE_CITY_NAME, a.INSURANCE_CITY_NAME,
......
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