本地认证或LDAP认证支持携带‘姓名’、‘部门’、‘邮箱’等用户元信息

This commit is contained in:
huyueeer
2021-08-06 11:40:24 +08:00
parent b77345222c
commit b5fb24b360
6 changed files with 87 additions and 6 deletions

View File

@@ -18,6 +18,9 @@ public class AccountConverter {
accountDO.setUsername(dto.getUsername());
accountDO.setPassword(dto.getPassword());
accountDO.setRole(dto.getRole());
accountDO.setDepartment(dto.getDepartment());
accountDO.setMail(dto.getMail());
accountDO.setDisplayName(dto.getDisplayName());
return accountDO;
}