|
@@ -268,7 +268,7 @@ public class UserIdentityServiceImpl extends BaseMybatisDao<UserIdentityMapper>
|
|
|
User u = userMapper.selectByPrimaryKey(uid);
|
|
User u = userMapper.selectByPrimaryKey(uid);
|
|
|
UserIdentityDetailAdminBo bo = new UserIdentityDetailAdminBo();
|
|
UserIdentityDetailAdminBo bo = new UserIdentityDetailAdminBo();
|
|
|
BeanUtils.copyProperties(ui, bo);
|
|
BeanUtils.copyProperties(ui, bo);
|
|
|
- bo.setLevel(u.getLvl());
|
|
|
|
|
|
|
+ bo.setLevel(u.getLvl().toString());
|
|
|
return bo;
|
|
return bo;
|
|
|
}
|
|
}
|
|
|
|
|
|