| | |
| | | package com.doumee.dao.business.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import com.doumee.core.utils.Constants; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | |
| | | @ApiModel("理賠操作历史表") |
| | | @TableName("`settle_claims_log`") |
| | | public class SettleClaimsLog { |
| | | public SettleClaimsLog(){ |
| | | |
| | | } |
| | | public SettleClaimsLog(SettleClaims apply,String title,String content,Integer objId,Integer objType, String before,String after){ |
| | | this.title =title; |
| | | this.content=content; |
| | | this.createDate =apply.getEditDate(); |
| | | this.creator =apply.getEditor(); |
| | | this.objId=objId; |
| | | this.isdeleted = Constants.ZERO; |
| | | this.objType = objType; |
| | | this.beforeContent=before; |
| | | this.settleClainmsId=apply.getId(); |
| | | this.afterContent=after; |
| | | } |
| | | @TableId(type = IdType.AUTO) |
| | | @ApiModelProperty(value = "主键", example = "1") |
| | | @ExcelColumn(name="主键") |
| | |
| | | |
| | | @ApiModelProperty(value = "创建时间") |
| | | @ExcelColumn(name="创建时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | |
| | | private Date createDate; |
| | | |
| | | @ApiModelProperty(value = "更新人编码", example = "1") |
| | |
| | | |
| | | @ApiModelProperty(value = "更新时间") |
| | | @ExcelColumn(name="更新时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | |
| | | private Date editDate; |
| | | |
| | | @ApiModelProperty(value = "是否删除0否 1是", example = "1") |
| | |
| | | |
| | | @ApiModelProperty(value = "关联对象编码") |
| | | @ExcelColumn(name="关联对象编码") |
| | | private String objId; |
| | | private Integer objId; |
| | | |
| | | @ApiModelProperty(value = "操作前内容") |
| | | @ExcelColumn(name="操作前内容") |
| | |
| | | @ExcelColumn(name="操作后内容") |
| | | private String afterContent; |
| | | |
| | | @ApiModelProperty(value = "大类类型:1=报案 2=立案 3=受理 4=理算 5=核赔 6=结案 7=立案退回 8商议退回 9已撤案") |
| | | private Integer parentStatus; |
| | | |
| | | @ApiModelProperty(value = "业务类型") |
| | | private Integer status; |
| | | |
| | | |
| | | @ApiModelProperty(value = "创建人名称", example = "1") |
| | | @TableField(exist = false) |
| | | private String creatorName; |
| | | @ApiModelProperty(value = "创建人类型 0平台 1企业用户", example = "1") |
| | | @TableField(exist = false) |
| | | private Integer creatorType; |
| | | |
| | | @ApiModelProperty(value = "公司名称", example = "1") |
| | | @TableField(exist = false) |
| | | private String companyName; |
| | | } |