From a9ca0823ab8f33ca85abebcf6ec4a8da235adb49 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期二, 30 一月 2024 14:36:49 +0800 Subject: [PATCH] 开发业务接口 --- server/service/src/main/java/com/doumee/dao/business/model/ApplyChange.java | 50 ++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 48 insertions(+), 2 deletions(-) diff --git a/server/service/src/main/java/com/doumee/dao/business/model/ApplyChange.java b/server/service/src/main/java/com/doumee/dao/business/model/ApplyChange.java index 5d45a24..78580e2 100644 --- a/server/service/src/main/java/com/doumee/dao/business/model/ApplyChange.java +++ b/server/service/src/main/java/com/doumee/dao/business/model/ApplyChange.java @@ -2,6 +2,8 @@ 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; @@ -37,6 +39,19 @@ @ExcelColumn(name="鍒涘缓鏃堕棿") private Date createDate; + @ApiModelProperty(value = "鏈�杩戞搷浣滄椂闂�") + @ExcelColumn(name="鏈�杩戞搷浣滄椂闂�") + + private Date checkDate; + + @ApiModelProperty(value = "鏈�杩戞搷浣滃娉�") + @ExcelColumn(name="鏈�杩戞搷浣滃娉�") + private String checkInfo; + + @ApiModelProperty(value = "鏈�杩戞搷浣滀汉缂栫爜锛堝叧鑱攕ystem_user)", example = "1") + @ExcelColumn(name="鏈�杩戞搷浣滀汉缂栫爜锛堝叧鑱攕ystem_user)") + private Integer checkUserId; + @ApiModelProperty(value = "鏇存柊浜虹紪鐮�", example = "1") @ExcelColumn(name="鏇存柊浜虹紪鐮�") private Integer editor; @@ -68,13 +83,13 @@ @ApiModelProperty(value = "鎵瑰崟鐢熸晥鏃堕棿") @ExcelColumn(name="鎵瑰崟鐢熸晥鏃堕棿") - private Date applyStartTime; @ApiModelProperty(value = "鐘舵�� 0寰呯缃� 1宸茬绔� 2宸蹭笂浼犳壒鍗� 3閫�鍥炵敵璇� 4骞冲彴鍚屾剰 5骞冲彴椹冲洖") @ExcelColumn(name="鐘舵�� 0寰呯缃� 1宸茬绔� 2宸蹭笂浼犳壒鍗� 3閫�鍥炵敵璇� 4骞冲彴鍚屾剰 5骞冲彴椹冲洖") private Integer status; - + @ApiModelProperty(value = "鍦ㄧ嚎绛剧珷鍚堝悓鍙�") + private String signApplyNo; @ApiModelProperty(value = "鏈熸湜淇濋櫓鐢熸晥璧锋湡") @ExcelColumn(name="鏈熸湜淇濋櫓鐢熸晥璧锋湡") private Date validTime; @@ -87,6 +102,9 @@ @ExcelColumn(name="鎿嶄綔绫诲瀷 0鍔犲噺淇� 1鎹㈠巶") private Integer type; + @ApiModelProperty(value = "鍙樻洿閲戦") + @ExcelColumn(name="鍙樻洿閲戦") + private BigDecimal fee; @ApiModelProperty(value = "淇濆崟鍙�") @TableField(exist = false) private String applyCode; @@ -146,4 +164,32 @@ @TableField(exist = false) private Integer companyId; + @ApiModelProperty(value = "鎵瑰崟闄勪欢瀵硅薄") + @TableField(exist = false) + private Multifile pidanFile; + @ApiModelProperty(value = "澶勭悊浼佷笟鐢宠鐘舵�� 0鍚屾剰 1椹冲洖") + @TableField(exist = false) + private int dealBackApply; + + @ApiModelProperty(value = "淇濋櫓鐢熸晥璧锋湡") + @TableField(exist = false) + private Date startTime; + @ApiModelProperty(value = "淇濋櫓鐢熸晥姝㈡湡") + @TableField(exist = false) + private Date endTime; + + + + public TaxesInvoicingVO getTaxesInvoicingVO(){ + TaxesInvoicingVO taxesInvoicingVO = new TaxesInvoicingVO(); + taxesInvoicingVO.setId(this.getId()); + taxesInvoicingVO.setSolutionsName(this.getSolutionsName()); + taxesInvoicingVO.setValidCode(this.getValidCode()); + taxesInvoicingVO.setAddNum(this.getAddNum()); + taxesInvoicingVO.setDelNum(this.getDelNum()); + taxesInvoicingVO.setAmount(this.getFee()); + taxesInvoicingVO.setType(Constants.ONE); + return taxesInvoicingVO; + } + } -- Gitblit v1.9.3