Skip to content

Commit

Permalink
[代码优化]BaseEntity里updatedBy改为updateBy (elunez#603)
Browse files Browse the repository at this point in the history
与其他字段时态一致
  • Loading branch information
shanezhiu authored Mar 2, 2021
1 parent a1e8005 commit a0b6e85
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a0b6e85

Please sign in to comment.