字典处理

This commit is contained in:
he
2022-04-26 17:36:32 +08:00
parent 8f6830ea8d
commit 0c0a82d8e1
11 changed files with 291 additions and 181 deletions
@@ -9,6 +9,7 @@ using Microsoft.AspNetCore.Mvc;
using IRaCIS.Core.Application.Interfaces;
using IRaCIS.Core.Application.ViewModel;
using Castle.Core.Internal;
using IRaCIS.Core.Infra.EFCore.Dto;
namespace IRaCIS.Core.Application.Service
{
@@ -26,6 +27,17 @@ namespace IRaCIS.Core.Application.Service
_frontAuditConfigRepository = frontAuditConfigRepository;
}
/// <summary>
/// 翻译稽查数据
/// </summary>
/// <param name="dto"></param>
/// <returns></returns>
[HttpPost]
public async Task<List<string>> SetDictionaryValue(SetDictionaryValueDto dto)
{
return await _frontAuditConfigRepository.SetDictionaryValue(dto);
}
/// <summary>
/// 获取子数据
/// </summary>