package com.doumee.dao.business.model; import com.baomidou.mybatisplus.annotation.TableField; import com.doumee.core.annotation.excel.ExcelColumn; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import com.fasterxml.jackson.annotation.JsonFormat; import java.util.Date; import java.util.List; /** * 投保申请操作历史表 * @author 江蹄蹄 * @date 2024/01/16 10:03 */ @Data @ApiModel("投保申请操作历史表") @TableName("`apply_log`") public class ApplyLog { public ApplyLog(){ } public ApplyLog(InsuranceApply apply,String title,String content,Integer objId,Integer objType, String before,String after){ this.title =title; this.content=content; this.applyId = apply.getId(); this.createDate =apply.getEditDate(); this.creator =apply.getEditor(); this.status = apply.getStatus(); this.objId=objId; this.objType = objType; this.beforeContent=before; this.afterContent=after; } public ApplyLog(ApplyChange apply,String title,String content,Integer objId,Integer objType, String before,String after){ this.title =title; this.content=content; this.applyId = apply.getId(); this.createDate =apply.getEditDate(); this.creator =apply.getEditor(); this.status = apply.getStatus(); this.objId=objId; this.objType = objType; this.beforeContent=before; this.afterContent=after; } public ApplyLog(UnionApply apply,String title,String content,Integer objId,Integer objType, String before,String after){ this.title =title; this.content=content; this.applyId = apply.getId(); this.createDate =apply.getEditDate(); this.creator =apply.getEditor(); this.status = apply.getStatus(); this.objId=objId; this.objType = objType; this.beforeContent=before; this.afterContent=after; } public ApplyLog(UnionChange apply,String title,String content,Integer objId,Integer objType, String before,String after){ this.title =title; this.content=content; this.applyId = apply.getId(); this.createDate =apply.getEditDate(); this.creator =apply.getEditor(); this.status = apply.getStatus(); this.objId=objId; this.objType = objType; this.beforeContent=before; this.afterContent=after; } @TableId(type = IdType.AUTO) @ApiModelProperty(value = "主键", example = "1") @ExcelColumn(name="主键") private Integer id; @ApiModelProperty(value = "创建人编码", example = "1") @ExcelColumn(name="创建人编码") private Integer creator; @ApiModelProperty(value = "创建时间") @ExcelColumn(name="创建时间") private Date createDate; @ApiModelProperty(value = "更新人编码", example = "1") @ExcelColumn(name="更新人编码") private Integer editor; @ApiModelProperty(value = "更新时间") @ExcelColumn(name="更新时间") private Date editDate; @ApiModelProperty(value = "是否删除0否 1是", example = "1") @ExcelColumn(name="是否删除0否 1是") private Integer isdeleted; @ApiModelProperty(value = "备注") @ExcelColumn(name="备注") private String remark; @ApiModelProperty(value = "投保申请编码(关联insurance_apply", example = "1") @ExcelColumn(name="投保申请编码(关联insurance_apply") private Integer applyId; @ApiModelProperty(value = "标题") @ExcelColumn(name="标题") private String title; @ApiModelProperty(value = "简介") @ExcelColumn(name="简介") private String content; @ApiModelProperty(value = "状态 0提交投保申请 1平台退回保单(已退回) 2已上传代签申请表待企业签章 3已签章待上传保险单 4保单出具失败退回 5已上传保单 6企业申请退回 7企业关闭申请 8平台同意企业退回申请 9平台拒绝企业退回申请", example = "1") @ExcelColumn(name="状态 0提交投保申请 1平台退回保单(已退回) 2已上传代签申请表待企业签章 3已签章待上传保险单 4保单出具失败退回 5已上传保单 6企业申请退回 7企业关闭申请 8平台同意企业退回申请 9平台拒绝企业退回申请") private Integer objType; @ApiModelProperty(value = "关联对象编码") @ExcelColumn(name="关联对象编码") private Integer objId; @ApiModelProperty(value = "操作前内容") @ExcelColumn(name="操作前内容") private String beforeContent; @ApiModelProperty(value = "操作后内容") @ExcelColumn(name="操作后内容") private String afterContent; @ApiModelProperty(value = "状态 0待审核 1平台退回保单(已退回) 2已上传代签申请表待企业签章(待签署) 3已签章待上传保险单(待出单) 4保单出具失败退回(已退回) 5已上传保单(保障中)6企业申请退回中 7平台同意退回(已退回) 8企业关闭 (已关闭)", example = "1") @ExcelColumn(name="状态 0待审核 1平台退回保单(已退回) 2已上传代签申请表待企业签章(待签署) 3已签章待上传保险单(待出单) 4保单出具失败退回(已退回) 5已上传保单(保障中)6企业申请退回中 7平台同意退回(已退回) 8企业关闭 (已关闭)") 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; }