| | |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import com.doumee.dao.business.vo.CompensationVO; |
| | | import com.doumee.dao.business.vo.SettleClaimsMoneyVO; |
| | | import com.doumee.dao.business.vo.SettleParentStatusVO; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | |
| | | @ApiModelProperty(value = "是否待补充材料:0=否;1=是") |
| | | private Integer waitSupplement; |
| | | |
| | | @ApiModelProperty(value = "补充材料说明") |
| | | private String waitSupplementInfo; |
| | | |
| | | |
| | | @ApiModelProperty(value = "费用是否发生变更:0=否;1=是;") |
| | | private Integer feeUpdate; |
| | |
| | | |
| | | @ApiModelProperty(value = "核赔其他金额") |
| | | private BigDecimal hpOtherAccount; |
| | | |
| | | @ApiModelProperty(value = "详细地址") |
| | | private String address; |
| | | |
| | | @ApiModelProperty(value = "保单明细行主键") |
| | | private Integer applyDetailId; |
| | | |
| | | @ApiModelProperty(value = "报案时间") |
| | | @TableField(exist = false) |
| | | private Date reportDate; |
| | | |
| | | |
| | | @ApiModelProperty(value = "赔偿金额") |
| | | @TableField(exist = false) |
| | |
| | | @ApiModelProperty(value = "其他资料") |
| | | @TableField(exist = false) |
| | | private List<Multifile> otherFileList; |
| | | |
| | | @ApiModelProperty(value = "补充说明文件") |
| | | @TableField(exist = false) |
| | | private List<Multifile> supplementFileList; |
| | | |
| | | |
| | | @ApiModelProperty(value = "打款凭证") |
| | | @TableField(exist = false) |
| | |
| | | @TableField(exist = false) |
| | | private List<CompensationVO> accountList; |
| | | |
| | | @ApiModelProperty(value = "流程详情信息", example = "1") |
| | | @TableField(exist = false) |
| | | private List<SettleParentStatusVO> parentStatusVOList; |
| | | |
| | | @ApiModelProperty(value = "报案时间 查询使用 yyyy-MM-dd") |
| | | @TableField(exist = false) |
| | | private String createDateStr; |
| | | |
| | | @ApiModelProperty(value = "流程耗时",hidden = true) |
| | | @TableField(exist = false) |
| | | private Integer totalHours; |
| | | |
| | | |
| | | @ApiModelProperty(value = "拒绝退回日志") |
| | | @TableField(exist = false) |
| | | private SettleClaimsLog refuseSettleClaimsLog; |
| | | |
| | | @ApiModelProperty(value = "补充说明日志") |
| | | @TableField(exist = false) |
| | | private SettleClaimsLog supplementSettleClaimsLog; |
| | | |
| | | |
| | | } |