update 补全实体类 注入注解

This commit is contained in:
疯狂的狮子li
2021-04-22 21:07:18 +08:00
parent 6dc791c34f
commit 1bef814c51
13 changed files with 52 additions and 27 deletions

View File

@ -135,6 +135,7 @@ public class GenTable implements Serializable {
/**
* 创建者
*/
@TableField(fill = FieldFill.INSERT)
private String createBy;
/**
@ -147,6 +148,7 @@ public class GenTable implements Serializable {
/**
* 更新者
*/
@TableField(fill = FieldFill.INSERT_UPDATE)
private String updateBy;
/**

View File

@ -120,6 +120,7 @@ public class GenTableColumn implements Serializable {
/**
* 创建者
*/
@TableField(fill = FieldFill.INSERT)
private String createBy;
/**
@ -132,6 +133,7 @@ public class GenTableColumn implements Serializable {
/**
* 更新者
*/
@TableField(fill = FieldFill.INSERT_UPDATE)
private String updateBy;
/**