OrganizationUserRepository.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. using AutoMapper;
  5. using Datory;
  6. using GxPress.Common.AppOptions;
  7. using GxPress.Common.Page;
  8. using GxPress.Common.Tools;
  9. using GxPress.Repository.Interface.Organization;
  10. using GxPress.Request.OrganizationUser;
  11. using Microsoft.Extensions.Options;
  12. namespace GxPress.Repository.Implement.Organization
  13. {
  14. public class OrganizationUserRepository : IOrganizationUserRepository
  15. {
  16. private readonly Repository<Entity.tede2.Organization.OrganizationUser> _repository;
  17. private readonly IMapper _mapper;
  18. private readonly string _connectionString;
  19. private readonly string _databaseTypestr;
  20. public OrganizationUserRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
  21. {
  22. _databaseTypestr = dbOptionsAccessor.CurrentValue.DatabaseType;
  23. _connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
  24. var databaseType = StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
  25. var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
  26. _repository = new Repository<Entity.tede2.Organization.OrganizationUser>(database);
  27. _mapper = mapper;
  28. }
  29. public IDatabase Database => _repository.Database;
  30. public string TableName => _repository.TableName;
  31. public List<TableColumn> TableColumns => _repository.TableColumns;
  32. public async Task<PagedList<Entity.tede2.Organization.OrganizationUser>> GetSearchAllAsync(OrganizationUserSearchRequest request)
  33. {
  34. var query = Q.NewQuery();
  35. if (!string.IsNullOrEmpty(request.KeyWord))
  36. {
  37. query.Where(n => n.OrWhereLike(nameof(Entity.tede2.Organization.OrganizationUser.UserName), $"%request.KeyWord%").
  38. OrWhereLike(nameof(Entity.tede2.Organization.OrganizationUser.LoginAccountNumber), $"%request.KeyWord%"));
  39. }
  40. if (request.OrganizationId > 0)
  41. query.Where(nameof(Entity.tede2.Organization.OrganizationUser.OrganizationId), request.OrganizationId);
  42. var result = new PagedList<Entity.tede2.Organization.OrganizationUser>();
  43. result.Total = await _repository.CountAsync(query);
  44. result.Items = await _repository.GetAllAsync(query);
  45. return result;
  46. }
  47. public async Task<bool> UpdateAsync(OrganizationUserUpdateRequest request)
  48. {
  49. var model = await _repository.GetAsync(request.Id);
  50. if (!string.IsNullOrEmpty(request.LoginAccountNumber))
  51. model.LoginAccountNumber = request.LoginAccountNumber;
  52. if (!string.IsNullOrEmpty(request.UserName))
  53. model.UserName = request.UserName;
  54. if (!string.IsNullOrEmpty(request.Phone))
  55. model.Phone = request.Phone;
  56. if (!string.IsNullOrEmpty(request.MacAddress))
  57. model.MacAddress = request.MacAddress;
  58. if (!string.IsNullOrEmpty(request.BeginTime) && !string.IsNullOrEmpty(request.EndTime))
  59. {
  60. if (DateTime.TryParse(request.BeginTime, out var beginTme) && DateTime.TryParse(request.EndTime, out var endTime))
  61. {
  62. model.BeginTime = beginTme;
  63. model.EndTime = endTime;
  64. }
  65. }
  66. if (!string.IsNullOrEmpty(request.OpenTime))
  67. {
  68. if (DateTime.TryParse(request.BeginTime, out var OpenTime))
  69. model.OpenTime = OpenTime;
  70. }
  71. if (request.OpenStatus > 0)
  72. model.OpenStatus = request.OpenStatus;
  73. if (request.IsClose > 0)
  74. model.IsClose = request.IsClose == 1;
  75. if (request.IsDisable > 0)
  76. model.IsDisable = request.IsDisable == 1;
  77. if (request.OrganizationId > 0)
  78. model.OrganizationId = request.OrganizationId;
  79. return await _repository.UpdateAsync(model);
  80. }
  81. public async Task<bool> InsertAsync(Entity.tede2.Organization.OrganizationUser model)
  82. {
  83. return await _repository.InsertAsync(model) > 0;
  84. }
  85. public async Task<IEnumerable<Entity.tede2.Organization.OrganizationUser>> GetAllAsync(List<int> ids)
  86. {
  87. var list = await _repository.GetAllAsync(Q.WhereIn(nameof(Entity.tede2.Organization.OrganizationUser.Id), ids));
  88. return list;
  89. }
  90. public async Task<bool> DeleteAsync(List<int> ids)
  91. {
  92. return await _repository.DeleteAsync(Q.WhereIn(nameof(Entity.tede2.Organization.OrganizationUser.Id), ids)) > 0;
  93. }
  94. public async Task<bool> UpdateDisableAsync(OrganizationUserDisableUpdateRequest request)
  95. {
  96. return await _repository.UpdateAsync(Q.WhereIn(nameof(Entity.tede2.Organization.OrganizationUser.Id), request.Ids).Set(nameof(Entity.tede2.Organization.OrganizationUser.IsDisable), request.IsDisable)) > 0;
  97. }
  98. }
  99. }