Commit 1b13a050 by zhangxingmin

push

parent 6db1c61f
......@@ -51,7 +51,7 @@ public class CsfMybatisPlusConfig {
if (authUserDto != null) {
//自动注入创建人和创建用户名
this.strictInsertFill(metaObject, "creatorId", String.class, authUserDto.getUserBizId());
this.strictInsertFill(metaObject, "creatorName", String.class, authUserDto.getUsername());
this.strictInsertFill(metaObject, "creatorName", String.class, authUserDto.getRealName());
}
}
......@@ -68,7 +68,7 @@ public class CsfMybatisPlusConfig {
if (authUserDto != null) {
//自动注入更新人和更新用户名
this.strictUpdateFill(metaObject, "updaterId", String.class, authUserDto.getUserBizId());
this.strictUpdateFill(metaObject, "updaterName", String.class, authUserDto.getUsername());
this.strictUpdateFill(metaObject, "updaterName", String.class, authUserDto.getRealName());
}
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment