mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-12 04:16:51 +08:00
SZX-927:学员端-个人设置-手机号未同步到
This commit is contained in:
@@ -67,6 +67,7 @@ public class DataUserSyncServiceImpl implements IDataUserSyncService {
|
|||||||
}
|
}
|
||||||
a.setLoginName(user.getCode());
|
a.setLoginName(user.getCode());
|
||||||
a.setMobile(user.getMobile());
|
a.setMobile(user.getMobile());
|
||||||
|
a.setEmail(user.getEmail());
|
||||||
log.info("更新账号code");
|
log.info("更新账号code");
|
||||||
accountDao.update(a);
|
accountDao.update(a);
|
||||||
} else {
|
} else {
|
||||||
@@ -80,6 +81,7 @@ public class DataUserSyncServiceImpl implements IDataUserSyncService {
|
|||||||
a.setSysId(user.getKid());
|
a.setSysId(user.getKid());
|
||||||
a.setStatus(1);
|
a.setStatus(1);
|
||||||
a.setMobile(user.getMobile());
|
a.setMobile(user.getMobile());
|
||||||
|
a.setEmail(user.getEmail());
|
||||||
accountDao.save(a);
|
accountDao.save(a);
|
||||||
log.info("账号不存在,新添加账号【" + user.getId() + "】");
|
log.info("账号不存在,新添加账号【" + user.getId() + "】");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user