DictService.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. using System.Threading.Tasks;
  2. using ZhonTai.Admin.Core.Dto;
  3. using ZhonTai.Admin.Domain.Dict;
  4. using ZhonTai.Admin.Services.Dict.Dto;
  5. using ZhonTai.Admin.Domain.Dict.Dto;
  6. using ZhonTai.DynamicApi;
  7. using ZhonTai.DynamicApi.Attributes;
  8. using Microsoft.AspNetCore.Mvc;
  9. using ZhonTai.Admin.Core.Consts;
  10. using System.Linq;
  11. using System.Collections.Generic;
  12. using Microsoft.AspNetCore.Authorization;
  13. namespace ZhonTai.Admin.Services.Dict;
  14. /// <summary>
  15. /// 数据字典服务
  16. /// </summary>
  17. [Order(60)]
  18. [DynamicApi(Area = AdminConsts.AreaName)]
  19. public class DictService : BaseService, IDictService, IDynamicApi
  20. {
  21. private readonly IDictRepository _dictRepository;
  22. public DictService(IDictRepository dictRepository)
  23. {
  24. _dictRepository = dictRepository;
  25. }
  26. /// <summary>
  27. /// 查询
  28. /// </summary>
  29. /// <param name="id"></param>
  30. /// <returns></returns>
  31. public async Task<DictGetOutput> GetAsync(long id)
  32. {
  33. var result = await _dictRepository.GetAsync<DictGetOutput>(id);
  34. return result;
  35. }
  36. /// <summary>
  37. /// 查询分页
  38. /// </summary>
  39. /// <param name="input"></param>
  40. /// <returns></returns>
  41. [HttpPost]
  42. public async Task<PageOutput<DictGetPageOutput>> GetPageAsync(PageInput<DictGetPageDto> input)
  43. {
  44. var key = input.Filter?.Name;
  45. var dictTypeId = input.Filter?.DictTypeId;
  46. var list = await _dictRepository.Select
  47. .WhereDynamicFilter(input.DynamicFilter)
  48. .WhereIf(dictTypeId.HasValue && dictTypeId.Value > 0, a => a.DictTypeId == dictTypeId)
  49. .WhereIf(key.NotNull(), a => a.Name.Contains(key) || a.Code.Contains(key))
  50. .Count(out var total)
  51. .OrderByDescending(a => a.Sort)
  52. .Page(input.CurrentPage, input.PageSize)
  53. .ToListAsync<DictGetPageOutput>();
  54. var data = new PageOutput<DictGetPageOutput>()
  55. {
  56. List = list,
  57. Total = total
  58. };
  59. return data;
  60. }
  61. /// <summary>
  62. /// 查询列表
  63. /// </summary>
  64. /// <param name="codes">编码列表</param>
  65. /// <returns></returns>
  66. [AllowAnonymous]
  67. [HttpPost]
  68. public async Task<Dictionary<string, List<DictGetListDto>>> GetListAsync(string[] codes)
  69. {
  70. var list = await _dictRepository.Select
  71. .Where(a => codes.Contains(a.DictType.Code) && a.DictType.Enabled == true && a.Enabled == true)
  72. .OrderBy(a => a.Sort)
  73. .ToListAsync(a => new DictGetListDto { DictTypeCode = a.DictType.Code });
  74. var dicts = new Dictionary<string, List<DictGetListDto>>();
  75. foreach (var code in codes)
  76. {
  77. if (code.NotNull())
  78. dicts[code] = list.Where(a => a.DictTypeCode == code).ToList();
  79. }
  80. return dicts;
  81. }
  82. /// <summary>
  83. /// 新增
  84. /// </summary>
  85. /// <param name="input"></param>
  86. /// <returns></returns>
  87. public async Task<long> AddAsync(DictAddInput input)
  88. {
  89. if (await _dictRepository.Select.AnyAsync(a => a.DictTypeId == input.DictTypeId && a.Name == input.Name))
  90. {
  91. throw ResultOutput.Exception($"字典已存在");
  92. }
  93. if (input.Code.NotNull() && await _dictRepository.Select.AnyAsync(a => a.DictTypeId == input.DictTypeId && a.Code == input.Code))
  94. {
  95. throw ResultOutput.Exception($"字典编码已存在");
  96. }
  97. if (input.Code.NotNull() && await _dictRepository.Select.AnyAsync(a => a.DictTypeId == input.DictTypeId && a.Code == input.Code))
  98. {
  99. throw ResultOutput.Exception($"字典编码已存在");
  100. }
  101. if (input.Value.NotNull() && await _dictRepository.Select.AnyAsync(a => a.DictTypeId == input.DictTypeId && a.Value == input.Value))
  102. {
  103. throw ResultOutput.Exception($"字典值已存在");
  104. }
  105. var entity = Mapper.Map<DictEntity>(input);
  106. if (entity.Sort == 0)
  107. {
  108. var sort = await _dictRepository.Select.Where(a => a.DictTypeId == input.DictTypeId).MaxAsync(a => a.Sort);
  109. entity.Sort = sort + 1;
  110. }
  111. await _dictRepository.InsertAsync(entity);
  112. return entity.Id;
  113. }
  114. /// <summary>
  115. /// 修改
  116. /// </summary>
  117. /// <param name="input"></param>
  118. /// <returns></returns>
  119. public async Task UpdateAsync(DictUpdateInput input)
  120. {
  121. var entity = await _dictRepository.GetAsync(input.Id);
  122. if (!(entity?.Id > 0))
  123. {
  124. throw ResultOutput.Exception("字典不存在");
  125. }
  126. if (await _dictRepository.Select.AnyAsync(a => a.Id != input.Id && a.DictTypeId == input.DictTypeId && a.Name == input.Name))
  127. {
  128. throw ResultOutput.Exception($"字典已存在");
  129. }
  130. if (input.Code.NotNull() && await _dictRepository.Select.AnyAsync(a => a.Id != input.Id && a.DictTypeId == input.DictTypeId && a.Code == input.Code))
  131. {
  132. throw ResultOutput.Exception($"字典编码已存在");
  133. }
  134. if (input.Value.NotNull() && await _dictRepository.Select.AnyAsync(a => a.Id != input.Id && a.DictTypeId == input.DictTypeId && a.Value == input.Value))
  135. {
  136. throw ResultOutput.Exception($"字典值已存在");
  137. }
  138. Mapper.Map(input, entity);
  139. await _dictRepository.UpdateAsync(entity);
  140. }
  141. /// <summary>
  142. /// 彻底删除
  143. /// </summary>
  144. /// <param name="id"></param>
  145. /// <returns></returns>
  146. public async Task DeleteAsync(long id)
  147. {
  148. await _dictRepository.DeleteAsync(m => m.Id == id);
  149. }
  150. /// <summary>
  151. /// 批量彻底删除
  152. /// </summary>
  153. /// <param name="ids"></param>
  154. /// <returns></returns>
  155. public async Task BatchDeleteAsync(long[] ids)
  156. {
  157. await _dictRepository.DeleteAsync(a => ids.Contains(a.Id));
  158. }
  159. /// <summary>
  160. /// 删除
  161. /// </summary>
  162. /// <param name="id"></param>
  163. /// <returns></returns>
  164. public async Task SoftDeleteAsync(long id)
  165. {
  166. await _dictRepository.SoftDeleteAsync(id);
  167. }
  168. /// <summary>
  169. /// 批量删除
  170. /// </summary>
  171. /// <param name="ids"></param>
  172. /// <returns></returns>
  173. public async Task BatchSoftDeleteAsync(long[] ids)
  174. {
  175. await _dictRepository.SoftDeleteAsync(ids);
  176. }
  177. }