feat():字符集异常

master
WeiRan 2024-08-09 21:12:29 +08:00
parent b16da7a74d
commit eb318398d4
1 changed files with 4 additions and 3 deletions

View File

@ -37,26 +37,27 @@ public class BaseEntity implements Serializable {
/** /**
* *
*/ */
@TableField(fill = FieldFill.INSERT)
private String createBy; private String createBy;
/** /**
* *
*/ */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@TableField(fill = FieldFill.INSERT_UPDATE) @TableField(fill = FieldFill.INSERT)
private Date createTime; private Date createTime;
/** /**
* *
*/ */
@TableField(fill = FieldFill.INSERT_UPDATE) @TableField(fill = FieldFill.UPDATE)
private String updateBy; private String updateBy;
/** /**
* *
*/ */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@TableField(fill = FieldFill.INSERT_UPDATE) @TableField(fill = FieldFill.UPDATE)
private Date updateTime; private Date updateTime;
/** /**