|
|
@@ -795,7 +795,8 @@ public class SysAgencyLeaderServiceImpl extends ServiceImpl<SysAgencyLeaderMappe
|
|
|
BigDecimal bigDecimal = new BigDecimal("0.00");
|
|
|
for (SysDept sysDept : sysDeptList) {
|
|
|
TeamInformation teamInformation = new TeamInformation();
|
|
|
- teamInformation.setUserName(sysAgencyLeaders.getUserName());
|
|
|
+ SysUser sysUser = sysUserMapper.selectById(sysAgencyLeaders.getUserId());
|
|
|
+ teamInformation.setUserName(sysUser.getName());
|
|
|
teamInformation.setDeptId(sysDept.getId());
|
|
|
teamInformation.setDeptName(sysDept.getName());
|
|
|
List<SysUser> sysUsers = sysUserMapper.selectList(new LambdaQueryWrapper<SysUser>()
|