Commit dd728555 by jianan

新单跟进86

parent dea8d07f
......@@ -6,6 +6,8 @@ import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
/**
......@@ -24,41 +26,49 @@ public class CommissionEditRecord implements Serializable {
/**
* 保单来佣业务id
*/
@Schema(description = "保单来佣业务id")
private String commissionBizId;
/**
* 操作人userid
*/
@Schema(description = "操作人userid")
private String userBizId;
/**
* 操作人
*/
@Schema(description = "操作人")
private String userName;
/**
* 序号
*/
@Schema(description = "序号")
private Integer seq;
/**
* 变更字段
*/
@Schema(description = "变更字段")
private String field;
/**
* 变更前信息
*/
@Schema(description = "变更前信息")
private Object beforeChange;
/**
* 变更后信息
*/
@Schema(description = "变更后信息")
private Object afterChange;
/**
* 通用备注
* 备注
*/
@Schema(description = "备注")
private String remark;
/**
......@@ -69,6 +79,7 @@ public class CommissionEditRecord implements Serializable {
/**
* 创建时间
*/
@Schema(description = "创建时间")
private Date createTime;
@TableField(exist = false)
......
......@@ -6,6 +6,8 @@ import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
/**
......@@ -24,26 +26,31 @@ public class FortuneAccountEditRecord implements Serializable {
/**
* 薪资记录业务id
*/
@Schema(description = "薪资记录业务id")
private String fortuneAccountBizId;
/**
* 修订人userid
*/
@Schema(description = "修订人userid")
private String userBizId;
/**
* 修订人
*/
@Schema(description = "修订人")
private String userName;
/**
* 修订内容
*/
@Schema(description = "修订内容")
private String editContent;
/**
* 通用备注
* 备注
*/
@Schema(description = "备注")
private String remark;
/**
......@@ -54,6 +61,7 @@ public class FortuneAccountEditRecord implements Serializable {
/**
* 创建时间
*/
@Schema(description = "创建时间")
private Date createTime;
@TableField(exist = false)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment