渠道码为空修复

This commit is contained in:
张松 2025-02-11 09:37:56 +08:00
parent ce68fa2753
commit 9cc7447728
1 changed files with 1 additions and 0 deletions

View File

@ -915,6 +915,7 @@ public class UserServiceImpl extends ServiceImpl<UserDao, UserEntity> implements
}
userInfo.setUpdateTime(DateUtil.date().toString());
baseMapper.updateById(userInfo);
userInfo.setQdCode(userInfo.getQdCode() == null ? "" : userInfo.getQdCode());
return getResult(userInfo);
}