You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

92 lines
3.1 KiB

using Znyc.CloudCar.IRepository.Dictionary;
using Znyc.CloudCar.IServices.CaChe;
using Znyc.CloudCar.IServices.Dictionary;
using Znyc.CloudCar.Model.Dtos.Dictionary;
using Znyc.CloudCar.Model.ViewModels.ReportsCallBack;
using Znyc.CloudCar.Utility.Extensions;
namespace Znyc.CloudCar.Services.Dictionary
{
public class DictionaryService : IDictionaryService
{
private readonly ICacheService _cacheService;
private readonly IDictionaryRepository _dictionaryRepository;
public DictionaryService(
IDictionaryRepository dictionaryRepository,
ICacheService cacheService)
{
_dictionaryRepository = dictionaryRepository;
_cacheService = cacheService;
}
/// <summary>
/// 根据Id获取字典
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
public async Task<DictionaryOutput> GetByIdAsync(long id)
{
List<DictionaryOutput> list = await _cacheService.GetDictionaryAsync();
if (list.IsNull())
{
list = await _dictionaryRepository.Select
.Where(x => x.IsEnabled)
.OrderBy(true,
c => c.Sort)
.ToListAsync<DictionaryOutput>();
await _cacheService.SetDictionaryAsync(list);
}
DictionaryOutput dictionary = list.Find(x => x.Id == id);
return dictionary;
}
/// <summary>
/// 根据ParentId查询数据字典列表
/// </summary>
/// <param name="pid"></param>
/// <returns></returns>
public async Task<ResponseOutput> GetListByParentIdAsync(long pid)
{
var dictionarys = await _cacheService.GetDictionaryAsync();
if (dictionarys.IsNull())
{
dictionarys = await _dictionaryRepository.Select
.Where(x => x.IsEnabled)
.OrderBy(true, x => x.Sort)
.ToListAsync<DictionaryOutput>();
await _cacheService.SetDictionaryAsync(dictionarys);
}
ResponseOutput response = new ResponseOutput()
{
Data = dictionarys.Where(x => x.ParentId == pid).ToList(),
Successed = true,
Code = 1
};
return response;
}
/// <summary>
/// 根据ParentId,Code查询数据字典列表
/// </summary>
/// <param name="parentId"></param>
/// <param name="code"></param>
/// <returns></returns>
public async Task<ResponseOutput> GetListByCodeAsync(long parentId, string code)
{
var dictionarys = await _dictionaryRepository
.Where(x => x.ParentId == parentId && x.Code == code.ToUpper())
.OrderBy(x => x.Sort)
.ToListAsync<DictionaryOutput>();
var response = new ResponseOutput();
response.Data = dictionarys;
response.Successed = true;
response.Code = 1;
return response;
}
}
}