|
|
@@ -52,22 +52,22 @@ public class PtlAgreementProductCosts implements Serializable {
|
|
|
private String productName;
|
|
|
|
|
|
/**
|
|
|
- * 费用描述(交强)
|
|
|
+ * 费用描述
|
|
|
*/
|
|
|
- @TableField(value = "jq_costs_description")
|
|
|
- private String jqCostsDescription;
|
|
|
+ @TableField(value = "costs_description")
|
|
|
+ private String costsDescription;
|
|
|
|
|
|
/**
|
|
|
- * 费用起期(交强)
|
|
|
+ * 费用起期
|
|
|
*/
|
|
|
- @TableField(value = "jq_costs_start_date")
|
|
|
- private LocalDateTime jqCostsStartDate;
|
|
|
+ @TableField(value = "costs_start_date")
|
|
|
+ private LocalDateTime costsStartDate;
|
|
|
|
|
|
/**
|
|
|
- * 费用止期(交强)
|
|
|
+ * 费用止期
|
|
|
*/
|
|
|
- @TableField(value = "jq_costs_end_date")
|
|
|
- private LocalDateTime jqCostsEndDate;
|
|
|
+ @TableField(value = "costs_end_date")
|
|
|
+ private LocalDateTime costsEndDate;
|
|
|
|
|
|
/**
|
|
|
* 溢出保费(交强)
|
|
|
@@ -117,18 +117,6 @@ public class PtlAgreementProductCosts implements Serializable {
|
|
|
@TableField(value = "jq_old_car_other_costs_proportion")
|
|
|
private String jqOldCarOtherCostsProportion;
|
|
|
|
|
|
- /**
|
|
|
- * 费用起期(商业)
|
|
|
- */
|
|
|
- @TableField(value = "sy_costs_start_date")
|
|
|
- private LocalDateTime syCostsStartDate;
|
|
|
-
|
|
|
- /**
|
|
|
- * 费用止期(商业)
|
|
|
- */
|
|
|
- @TableField(value = "sy_costs_end_date")
|
|
|
- private LocalDateTime syCostsEndDate;
|
|
|
-
|
|
|
/**
|
|
|
* 溢出保费(商业)
|
|
|
*/
|
|
|
@@ -408,9 +396,6 @@ public class PtlAgreementProductCosts implements Serializable {
|
|
|
result = getObjectHashCode(this.agreementId, result);
|
|
|
result = getObjectHashCode(this.productId, result);
|
|
|
result = getObjectHashCode(this.productName, result);
|
|
|
- result = getObjectHashCode(this.jqCostsDescription, result);
|
|
|
- result = getObjectHashCode(this.jqCostsStartDate, result);
|
|
|
- result = getObjectHashCode(this.jqCostsEndDate, result);
|
|
|
result = getObjectHashCode(this.jqSpilloverPremiums, result);
|
|
|
result = getObjectHashCode(this.jqSpilloverProportion, result);
|
|
|
result = getObjectHashCode(this.jqNewCarCostsProportion, result);
|
|
|
@@ -419,8 +404,6 @@ public class PtlAgreementProductCosts implements Serializable {
|
|
|
result = getObjectHashCode(this.jqCostsLevel, result);
|
|
|
result = getObjectHashCode(this.jqNewCarOtherCostsProportion, result);
|
|
|
result = getObjectHashCode(this.jqOldCarOtherCostsProportion, result);
|
|
|
- result = getObjectHashCode(this.syCostsStartDate, result);
|
|
|
- result = getObjectHashCode(this.syCostsEndDate, result);
|
|
|
result = getObjectHashCode(this.sySpilloverPremiums, result);
|
|
|
result = getObjectHashCode(this.sySpilloverProportion, result);
|
|
|
result = getObjectHashCode(this.syNewCarCostsProportion, result);
|
|
|
@@ -460,6 +443,9 @@ public class PtlAgreementProductCosts implements Serializable {
|
|
|
result = getObjectHashCode(this.minLossRation, result);
|
|
|
result = getObjectHashCode(this.maxLossRation, result);
|
|
|
result = getObjectHashCode(this.licenseNumber, result);
|
|
|
+ result = getObjectHashCode(this.costsDescription, result);
|
|
|
+ result = getObjectHashCode(this.costsStartDate, result);
|
|
|
+ result = getObjectHashCode(this.costsEndDate, result);
|
|
|
return result;
|
|
|
}
|
|
|
|