Commit 0449e324 authored by suhuiguang's avatar suhuiguang

fix(jg): 公共字段填充

1.新增时填充创建人
parent 6c91aa2d
package com.yeejoin.amos.boot.biz.common.entity;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
......@@ -22,7 +23,7 @@ public class TzsBaseEntity implements Serializable{
protected String sequenceNbr;
@TableField("\"REC_DATE\"")
protected Date recDate;
@TableField("\"REC_USER_ID\"")
@TableField(value = "\"REC_USER_ID\"", fill = FieldFill.INSERT_UPDATE)
protected String recUserId;
/**
......
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