[代码优化]BaseEntity里updatedBy改为updateBy (#603)

与其他字段时态一致
pull/605/head^2
shane 2021-03-02 19:03:20 +08:00 committed by GitHub
parent a1e8005499
commit a0b6e85ee5
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)