From 1bfec53e4e3a196a3ca53e06e9bec88139cbb689 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期三, 24 一月 2024 18:06:40 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 server/service/src/main/java/com/doumee/dao/business/model/InsuranceApply.java |   18 +++++++++++++++++-
 1 files changed, 17 insertions(+), 1 deletions(-)

diff --git a/server/service/src/main/java/com/doumee/dao/business/model/InsuranceApply.java b/server/service/src/main/java/com/doumee/dao/business/model/InsuranceApply.java
index 465ae37..3172fee 100644
--- a/server/service/src/main/java/com/doumee/dao/business/model/InsuranceApply.java
+++ b/server/service/src/main/java/com/doumee/dao/business/model/InsuranceApply.java
@@ -3,6 +3,7 @@
 import com.baomidou.mybatisplus.annotation.TableField;
 import com.doumee.core.annotation.excel.ExcelColumn;
 import com.doumee.core.utils.Constants;
+import com.doumee.dao.business.vo.TaxesInvoicingVO;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
 import com.baomidou.mybatisplus.annotation.IdType;
@@ -86,7 +87,6 @@
 
     @ApiModelProperty(value = "瀹為檯淇濋櫓鐢熸晥璧锋湡")
     @ExcelColumn(name="瀹為檯淇濋櫓鐢熸晥璧锋湡")
-
     private Date startTime;
 
     @ApiModelProperty(value = "鏈�杩戞搷浣滄椂闂�")
@@ -147,6 +147,9 @@
     @TableField(exist = false)
     private Date taxesLast;
 
+    @ApiModelProperty(value = "澶辨晥鍓╀綑澶╂暟")
+    @TableField(exist = false)
+    private Integer loseEfficacyDays;
 
     @ApiModelProperty(value = "鏈嶅姟澶╂暟")
     @TableField(exist = false)
@@ -168,6 +171,19 @@
     @TableField(exist = false)
     private int dealBackApply;
 
+
+    public TaxesInvoicingVO getTaxesInvoicingVO(){
+        TaxesInvoicingVO taxesInvoicingVO = new TaxesInvoicingVO();
+        taxesInvoicingVO.setId(this.getId());
+        taxesInvoicingVO.setSolutionsName(this.getSolutionsName());
+        taxesInvoicingVO.setInsuranceCode(this.getCode());
+        taxesInvoicingVO.setInsuranceNum(this.getInsureNum());
+        taxesInvoicingVO.setStartTime(this.getStartTime());
+        taxesInvoicingVO.setAmount(this.getFee());
+        taxesInvoicingVO.setType(Constants.ZERO);
+        return taxesInvoicingVO;
+    }
+
     @ApiModelProperty(value = "鍦ㄧ嚎绛剧珷鍦板潃")
     @TableField(exist = false)
     private String signLink;

--
Gitblit v1.9.3