refactor: 时间字段名变更实体类同步更新gmt_create→create_time,gmt_modified→update_time

This commit is contained in:
郝先瑞 2022-07-03 14:33:47 +08:00
parent 13d3997f59
commit d86eb1be7c

View File

@ -14,10 +14,10 @@ public class BaseEntity implements Serializable {
@TableField(fill = FieldFill.INSERT)
@JsonInclude(value = JsonInclude.Include.NON_NULL)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime gmtCreate;
private LocalDateTime createTime;
@TableField(fill = FieldFill.INSERT_UPDATE)
@JsonInclude(value = JsonInclude.Include.NON_NULL)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime gmtModified;
private LocalDateTime updateTime;
}