Pre Merge pull request !218 from wuKong/fix(mybatis)-修复自动增加双引号、无限增加转义

pull/218/MERGE
wuKong 2025-11-18 02:43:50 +00:00 committed by Gitee
commit 5ed2868c69
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 2 additions and 2 deletions

View File

@ -38,14 +38,14 @@ public abstract class BaseDO implements Serializable, TransPojo {
* *
* 使 String * 使 String
*/ */
@TableField(fill = FieldFill.INSERT, jdbcType = JdbcType.VARCHAR) @TableField(fill = FieldFill.INSERT)
private String creator; private String creator;
/** /**
* 使 SysUser id * 使 SysUser id
* *
* 使 String * 使 String
*/ */
@TableField(fill = FieldFill.INSERT_UPDATE, jdbcType = JdbcType.VARCHAR) @TableField(fill = FieldFill.INSERT_UPDATE)
private String updater; private String updater;
/** /**
* *