using System; using System.Collections.Generic; using EasyCaching.Core.Interceptor; using IRaCIS.Application.Contracts; using IRaCIS.Core.Infrastructure.Extention; namespace IRaCIS.Application.Interfaces { public interface IDictionaryService { /// /// 获取是和否 /// /// /// Task GetBoolValueState(bool value); /// /// 获取审核状态 /// /// /// /// /// Task GetAuditState(Guid trial, T childCode); /// /// 获取枚举翻译 /// /// /// /// /// Task GetBasicDataTranslateItem(string parentCode, T childCode); } }