k94314517
2024-04-09 02bc3bfe47e3d5311a0bb041c94e70a34b1ca73c
server/service/src/main/java/com/doumee/dao/business/model/ApplyChange.java
@@ -113,6 +113,14 @@
    @ApiModelProperty(value = "变更金额")
    @ExcelColumn(name="变更金额")
    private BigDecimal fee;
    @ApiModelProperty(value = "合并单-投保单状态 0=未上传;1=已上传;2=已签署", example = "1")
    private Integer unionChangeTbdStatus;
    @ApiModelProperty(value = "人员名单签署合同号")
    @ExcelColumn(name="人员名单签署合同号")
    private String signMemberListNo;
    @ApiModelProperty(value = "保单号")
    @TableField(exist = false)
    private String applyCode;
@@ -150,6 +158,14 @@
    @ApiModelProperty(value = "提交日期结束  yyyy-MM-dd ")
    @TableField(exist = false)
    private String createDateE;
    @ApiModelProperty(value = "批单生效起期时间")
    @TableField(exist = false)
    private String applyStartS;
    @ApiModelProperty(value = "批单止效时间")
    @TableField(exist = false)
    private String applyStartE;
    @ApiModelProperty(value = "保险方案主键")
    @TableField(exist = false)
@@ -201,6 +217,15 @@
    @ApiModelProperty(value = "日志记录")
    @TableField(exist = false)
    private List<ApplyLog> applyLogList;
    @ApiModelProperty(value = "方案类型 0直保 1委托投保")
    @TableField(exist = false)
    private Integer solutionType;
    @ApiModelProperty(value = "合并单主键(保单)")
    @TableField(exist = false)
    private Integer unionApplyId;
    public TaxesInvoicingVO toTaxesInvoicingVO(){
        TaxesInvoicingVO taxesInvoicingVO = new TaxesInvoicingVO();
        taxesInvoicingVO.setId(this.getId());
@@ -212,5 +237,7 @@
        taxesInvoicingVO.setType(Constants.ONE);
        return taxesInvoicingVO;
    }
    @ApiModelProperty(value = "是否获取附件信息 0不需要 1需要")
    @TableField(exist = false)
    private Integer getFiles;
}