|  |  |  | 
|---|
|  |  |  | 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; | 
|---|
|  |  |  | 
|---|
|  |  |  | @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.objType = objType; | 
|---|
|  |  |  | this.beforeContent=before; | 
|---|
|  |  |  | this.settleClainmsId=apply.getId(); | 
|---|
|  |  |  | this.afterContent=after; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | @TableId(type = IdType.AUTO) | 
|---|
|  |  |  | @ApiModelProperty(value = "主键", example = "1") | 
|---|
|  |  |  | @ExcelColumn(name="主键") | 
|---|
|  |  |  | 
|---|
|  |  |  | @ExcelColumn(name="操作后内容") | 
|---|
|  |  |  | private String afterContent; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @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; | 
|---|
|  |  |  | } | 
|---|