From c9df4cfec262ca54af52715af60a1276c37d08c5 Mon Sep 17 00:00:00 2001 From: k94314517 <8417338+k94314517@user.noreply.gitee.com> Date: 星期一, 29 一月 2024 20:12:24 +0800 Subject: [PATCH] 111 --- server/service/src/main/java/com/doumee/dao/business/model/InsuranceApply.java | 15 ++++++++++++--- 1 files changed, 12 insertions(+), 3 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 0afb25a..452c5ae 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 @@ -38,7 +38,6 @@ @ApiModelProperty(value = "鍒涘缓鏃堕棿") @ExcelColumn(name="鍒涘缓鏃堕棿") - private Date createDate; @ApiModelProperty(value = "鏇存柊浜虹紪鐮�", example = "1") @@ -72,19 +71,26 @@ @ApiModelProperty(value = "鏈熸湜淇濋櫓鐢熸晥姝㈡湡") @ExcelColumn(name="鏈熸湜淇濋櫓鐢熸晥姝㈡湡") - + @DateTimeFormat(pattern = "yyyy-MM-dd") + @JsonFormat(pattern="yyyy-MM-dd") private Date applyEndTime; @ApiModelProperty(value = "鏈熸湜淇濋櫓鐢熸晥璧锋湡") @ExcelColumn(name="鏈熸湜淇濋櫓鐢熸晥璧锋湡") + @DateTimeFormat(pattern = "yyyy-MM-dd") + @JsonFormat(pattern="yyyy-MM-dd") private Date applyStartTime; @ApiModelProperty(value = "瀹為檯淇濋櫓鐢熸晥姝㈡湡") @ExcelColumn(name="瀹為檯淇濋櫓鐢熸晥姝㈡湡") + @DateTimeFormat(pattern = "yyyy-MM-dd") + @JsonFormat(pattern="yyyy-MM-dd") private Date endTime; @ApiModelProperty(value = "瀹為檯淇濋櫓鐢熸晥璧锋湡") @ExcelColumn(name="瀹為檯淇濋櫓鐢熸晥璧锋湡") + @DateTimeFormat(pattern = "yyyy-MM-dd") + @JsonFormat(pattern="yyyy-MM-dd") private Date startTime; @ApiModelProperty(value = "鏈�杩戞搷浣滄椂闂�") @@ -178,7 +184,9 @@ @TableField(exist = false) private String statusInfo; - public TaxesInvoicingVO getTaxesInvoicingVO(){ + + + public TaxesInvoicingVO toTaxesInvoicingVO(){ TaxesInvoicingVO taxesInvoicingVO = new TaxesInvoicingVO(); taxesInvoicingVO.setId(this.getId()); taxesInvoicingVO.setSolutionsName(this.getSolutionsName()); @@ -189,6 +197,7 @@ taxesInvoicingVO.setType(Constants.ZERO); return taxesInvoicingVO; } + @ApiModelProperty(value = "鍦ㄧ嚎绛剧珷鍦板潃") @TableField(exist = false) private String signLink; -- Gitblit v1.9.3