修改了会议设置bug
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 13m8s

This commit is contained in:
yuyongle 2025-07-07 17:30:03 +08:00
parent 7dc0a87a23
commit ba9202e6ca

View File

@ -50,7 +50,13 @@ public class MeetServiceImpl implements IMeetService {
*/ */
@Override @Override
public MeetVo queryById(Long id){ public MeetVo queryById(Long id){
return baseMapper.selectVoById(id); MeetVo meetVo= baseMapper.selectVoById(id);
ResidentPersonVo residentPersonVo = residentPersonMapper.selectVoById(meetVo.getPrincipals());
meetVo.setPrincipalsName(residentPersonVo.getUserName());
meetVo.setPhoneNo(residentPersonVo.getPhone());
String locationName = roomMapper.queryRoomName(Long.valueOf(meetVo.getLocation()));
meetVo.setLocationName(locationName);
return meetVo;
} }
/** /**