mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-15 14:06:51 +08:00
19 lines
540 B
C#
19 lines
540 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
using Yi.RBAC.Application.Contracts.Dictionary.Dtos;
|
||
|
|
using Yi.Framework.Ddd.Services.Abstract;
|
||
|
|
|
||
|
|
namespace Yi.RBAC.Application.Contracts.Dictionary
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Dictionary服务抽象
|
||
|
|
/// </summary>
|
||
|
|
public interface IDictionaryService : ICrudAppService<DictionaryGetOutputDto, DictionaryGetListOutputDto, long, DictionaryGetListInputVo, DictionaryCreateInputVo, DictionaryUpdateInputVo>
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|