This commit is contained in:
cjw 2024-08-23 16:40:34 +08:00
parent 28335462b2
commit 6be1dea336
1 changed files with 3 additions and 0 deletions

View File

@ -215,8 +215,11 @@ public class CounselorServiceImpl implements ICounselorService {
Counselor counselorUpdate = new Counselor();
counselorUpdate.setId(userId);
counselorUpdate.setProvinceCode(bo.getProvinceCode());
counselorUpdate.setProvinceName(bo.getProvinceName());
counselorUpdate.setCityCode(bo.getCityCode());
counselorUpdate.setCityName(bo.getCityName());
counselorUpdate.setCountyCode(bo.getCountyCode());
counselorUpdate.setCountyName(bo.getCountyName());
boolean counselorFlag = baseMapper.updateById(counselorUpdate) > 0;
SysUserBo userUpdate = new SysUserBo();
userUpdate.setUserId(userId);