[代码优化]BaseEntity里updatedBy改为updateBy

与其他字段时态一致
pull/603/head
shane 2021-03-02 13:19:54 +08:00 committed by GitHub
parent a1e8005499
commit 19c36415ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ public class BaseEntity implements Serializable {
@LastModifiedBy
@Column(name = "update_by")
@ApiModelProperty(value = "更新人", hidden = true)
private String updatedBy;
private String updateBy;
@CreationTimestamp
@Column(name = "create_time", updatable = false)