using System.Collections.Generic; using System.Threading.Tasks; using Znyc.Recruitment.Admin.Commons.Core.App; using Znyc.Recruitment.Admin.Commons.Mapping; using Znyc.Recruitment.Admin.Security.Dtos; using Znyc.Recruitment.Admin.Security.Entitys; using Znyc.Recruitment.Admin.Security.IServices; namespace Znyc.Recruitment.Admin.Security.Application { /// /// public class UserApp { private readonly IRoleService roleService = App.GetService(); private readonly IAdminUserService service = App.GetService(); private readonly IAdminUserLogOnService userLogOnService = App.GetService(); /// /// 获取所有用户信息 /// /// public IEnumerable GetAll() { return service.GetAll(); } /// /// 根据用户账号查询用户信息 /// /// /// public async Task GetByUserName(string userName) { return await service.GetByUserName(userName); } /// /// 根据第三方OpenId查询用户信息 /// /// 第三方类型 /// OpenId值 /// public UserOutputDto GetUserOutDtoByOpenId(string openIdType, string openId) { return service.GetUserByOpenId(openIdType, openId).MapTo(); } /// /// 根据第三方OpenId查询用户信息 /// /// 第三方类型 /// OpenId值 /// public AdminUserEntity GetUserByOpenId(string openIdType, string openId) { return service.GetUserByOpenId(openIdType, openId); } /// /// 更新用户 /// /// 用户信息 /// public bool UpdateUser(AdminUserEntity user) { return service.Update(user, user.Id); } /// /// 根据用户ID获取头像 /// /// 用户ID /// public string GetHeadIconById(long userId) { AdminUserEntity user = service.Get(userId); if (user != null) { return user.HeadIcon; } return ""; } /// /// 查询用户信息 /// /// 用户Id /// public AdminUserEntity GetUserById(long id) { return service.Get(id); } /// /// 根据用户id和第三方类型查询 /// /// /// /// public UserOpenIdsEntity GetUserOpenIdById(long userId, string openIdType) { return service.GetUserOpenIdByuserId(openIdType, userId); } /// /// 根据微信统一ID(UnionID)查询用户 /// /// UnionID /// public AdminUserEntity GetUserByUnionId(string unionId) { return service.GetUserByUnionId(unionId); } /// /// 统计用户数 /// /// public long GetCountTotal() { return service.GetCountByWhere("1=1"); } } }