| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | |
| | | @ExcelColumn(name="批单生效时间") |
| | | private Date applyStartTime; |
| | | |
| | | @ApiModelProperty(value = "状态 0待签署 1已签章 2已上传批单 3退回申请 4平台同意 5平台驳回") |
| | | @ExcelColumn(name="状态 0待签署 1已签章 2已上传批单 3退回申请 4平台同意 5平台驳回") |
| | | @ApiModelProperty(value = "状态 0待签署 1已签章 2已上传批单 3退回申请 (待签署) 4退回申请 (已签章) 5平台同意(已退回) 6已关闭 ") |
| | | @ExcelColumn(name="状态 0待签署 1已签章 2已上传批单 3退回申请 (待签署) 4退回申请 (已签章) 5平台同意(已退回) 6已关闭 ") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty(value = "在线签章合同号") |
| | | private String signApplyNo; |
| | | @ApiModelProperty(value = "期望保险生效起期") |
| | | @ExcelColumn(name="期望保险生效起期") |
| | | //入参 |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | //出参 |
| | | @JsonFormat(pattern="yyyy-MM-dd") |
| | | private Date validTime; |
| | | |
| | | @ApiModelProperty(value = "批单号") |
| | |
| | | |
| | | |
| | | |
| | | public TaxesInvoicingVO getTaxesInvoicingVO(){ |
| | | |
| | | public TaxesInvoicingVO toTaxesInvoicingVO(){ |
| | | TaxesInvoicingVO taxesInvoicingVO = new TaxesInvoicingVO(); |
| | | taxesInvoicingVO.setId(this.getId()); |
| | | taxesInvoicingVO.setSolutionsName(this.getSolutionsName()); |