mdf:baseentity对象映射修改

This commit is contained in:
zhangzhiqiang
2022-11-30 11:20:15 +08:00
parent 35c296996f
commit 29c3a937f3

View File

@@ -40,14 +40,14 @@ import java.util.Date;
public class BaseEntity implements Serializable {
@CreatedBy
@Column(name = "create_by", updatable = false)
@Column(name = "create_name", updatable = false)
@ApiModelProperty(value = "创建人", hidden = true)
private String create_name;
private Long create_id;
@LastModifiedBy
@Column(name = "update_by")
@Column(name = "update_optname")
@ApiModelProperty(value = "更新人", hidden = true)
private String update_optname;