|
@@ -166,7 +166,7 @@ namespace GxPress.Repository.Implement
|
|
|
//用户不存在,自动注册
|
|
|
if (user == null)
|
|
|
throw new BusinessException("用户不存在");
|
|
|
-
|
|
|
+
|
|
|
return await _repository.UpdateAsync(Q.Where(nameof(User.Phone), request.Phone).Set(nameof(User.OpenId), request.OpenId)) > 0;
|
|
|
}
|
|
|
public async Task<bool> DeleteUsersAsync(IEnumerable<int> userIds)
|
|
@@ -388,6 +388,8 @@ namespace GxPress.Repository.Implement
|
|
|
if (!string.IsNullOrWhiteSpace(request.Phone))
|
|
|
user.Phone = request.Phone;
|
|
|
user.QRCoder = StringUtils.RemoveDomain(user.QRCoder);
|
|
|
+ if (user.DisableTypeId > 0)
|
|
|
+ user.IsDisable = user.DisableTypeId == 1;
|
|
|
return await UpdateAsync(user);
|
|
|
}
|
|
|
|
|
@@ -693,7 +695,7 @@ namespace GxPress.Repository.Implement
|
|
|
if (request.SearchType == 2 && !string.IsNullOrWhiteSpace(request.Key) && request.DepartmentId > 0)
|
|
|
notInUserIds = "and a.Id not in(";
|
|
|
if (request.SearchType == 1 && !string.IsNullOrWhiteSpace(request.Key) && request.DepartmentId > 0)
|
|
|
- notInUserIds = "and Id not in(";
|
|
|
+ notInUserIds = "and Id not in(";
|
|
|
foreach (var userId in request.UserIds)
|
|
|
{
|
|
|
notInUserIds += $"{userId},";
|
|
@@ -880,5 +882,27 @@ namespace GxPress.Repository.Implement
|
|
|
|
|
|
// return result.ToList()[0];
|
|
|
//}
|
|
|
+ /// <summary>
|
|
|
+ /// vip用户
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="request"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<PagedList<UserDetail>> GetUserVipDetail(UserSearchVipRequest request)
|
|
|
+ {
|
|
|
+ var result = new PagedList<UserDetail>();
|
|
|
+ var query = Q.NewQuery();
|
|
|
+ if (!string.IsNullOrEmpty(request.KeyWord))
|
|
|
+ query.WhereLike(nameof(User.Name), $"%{request.KeyWord}%");
|
|
|
+ if (request.VipPort > 0)
|
|
|
+ query.Where(nameof(User.Port), request.VipPort);
|
|
|
+ if (request.VipTypeId > 0)
|
|
|
+ query.Where(nameof(User.TypeId), request.VipTypeId);
|
|
|
+ if (request.DisableTypeId > 0)
|
|
|
+ query.Where(nameof(User.IsDisable), request.VipTypeId == 1);
|
|
|
+ result.Total = await _repository.CountAsync(query);
|
|
|
+ var items = await _repository.GetAllAsync(query);
|
|
|
+ result.Items = items.Select(n => _mapper.Map<UserDetail>(n));
|
|
|
+ return result;
|
|
|
+ }
|
|
|
}
|
|
|
}
|