From f6b0e262db2af5ca2e5ed76f95e746c1dd3c58e3 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期四, 01 二月 2024 15:17:47 +0800 Subject: [PATCH] 开发业务接口 --- server/service/src/main/java/com/doumee/dao/business/model/InsuranceApply.java | 21 +++++++++++++++------ 1 files changed, 15 insertions(+), 6 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 1309e53..9f49c29 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,21 +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 = "鏈�杩戞搷浣滄椂闂�") @@ -128,6 +132,12 @@ @ApiModelProperty(value = "鏂规鍚嶇О") @TableField(exist = false) private String solutionsName; + @ApiModelProperty(value = "鏂规閭欢") + @TableField(exist = false) + private String solutionEmail; + @ApiModelProperty(value = "绛剧珷鍏抽敭瀛�") + @TableField(exist = false) + private String signKeyword; @ApiModelProperty(value = "浜哄憳淇℃伅") @TableField(exist = false) @@ -179,8 +189,7 @@ - - public TaxesInvoicingVO getTaxesInvoicingVO(){ + public TaxesInvoicingVO toTaxesInvoicingVO(){ TaxesInvoicingVO taxesInvoicingVO = new TaxesInvoicingVO(); taxesInvoicingVO.setId(this.getId()); taxesInvoicingVO.setSolutionsName(this.getSolutionsName()); -- Gitblit v1.9.3