邮箱-后台-用户信息查询

This commit is contained in:
khalil
2025-03-17 17:23:42 +08:00
parent 8ba8c870ae
commit 896b5c1d73
6 changed files with 39 additions and 76 deletions

View File

@@ -30,7 +30,7 @@ public class UserVo {
private String phoneAreaCode;
private String email;
private Byte star;
//private Byte star;
private String nick;
@@ -38,7 +38,7 @@ public class UserVo {
private Byte defUser;
private Long fortune;
//private Long fortune;
private Byte gender;
@@ -54,6 +54,12 @@ public class UserVo {
private Integer fansNum;
private Date lastLoginTime;
private String lastLoginIp;
private String lastLoginRegion;
private Long goldNum;
private Boolean hasPrettyErbanNo;
@@ -101,9 +107,9 @@ public class UserVo {
/**
* 加入的话题
*/
private List<WorldInfo> joinWorlds;
/*private List<WorldInfo> joinWorlds;
private String attestationBackPic;
private String attestationBackPic;*/
private List<PrivatePhotoVo> privatePhoto;
/**

View File

@@ -150,9 +150,9 @@ public class UsersBaseService extends BaseService {
return usersList;
}
public List<Users> getUsersByAliAccountList(List<String> aliAccountList) {
public List<Users> getUsersByEmailList(List<String> email) {
UsersExample usersExample = new UsersExample();
usersExample.createCriteria().andAlipayAccountIn(aliAccountList);
usersExample.createCriteria().andEmailIn(email);
List<Users> usersList = usersMapper.selectByExample(usersExample);
if (CollectionUtils.isEmpty(usersList)) {
return null;
@@ -160,7 +160,6 @@ public class UsersBaseService extends BaseService {
return usersList;
}
/**
* 从DB中批量查询用户
* @param uids