|
@@ -168,10 +168,8 @@ public class QywxUserDataService {
|
|
|
//根据uuid查询用户登录状态
|
|
|
public UserBase getUserByUuid(String uuid) {
|
|
|
UserBaseExample example = new UserBaseExample();
|
|
|
- System.out.println("getUserByUuid,users uuid: " + uuid);
|
|
|
example.createCriteria().andUuidEqualTo(uuid);
|
|
|
List<UserBase> users = userBaseMapper.selectByExample(example);
|
|
|
- System.out.println("getUserByUuid,users: " + users);
|
|
|
return users.isEmpty() ? null : users.get(0);
|
|
|
}
|
|
|
//根据名称查询用户
|