mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-04 16:16:35 +08:00
14 lines
397 B
C#
14 lines
397 B
C#
|
|
using Yi.Framework.Infrastructure.Ddd.Services.Abstract;
|
||
|
|
using Yi.Furion.Rbac.Application.System.Dtos.Post;
|
||
|
|
|
||
|
|
namespace Yi.Furion.Rbac.Application.System.Services
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Post服务抽象
|
||
|
|
/// </summary>
|
||
|
|
public interface IPostService : ICrudAppService<PostGetOutputDto, PostGetListOutputDto, long, PostGetListInputVo, PostCreateInputVo, PostUpdateInputVo>
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|