mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-21 08:56:41 +08:00
19 lines
494 B
C#
19 lines
494 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Yi.RBAC.Application.Contracts.Identity.Dtos;
|
|
using Yi.Framework.Ddd.Services.Abstract;
|
|
|
|
namespace Yi.RBAC.Application.Contracts.Identity
|
|
{
|
|
/// <summary>
|
|
/// Post服务抽象
|
|
/// </summary>
|
|
public interface IPostService : ICrudAppService<PostGetOutputDto, PostGetListOutputDto, long, PostGetListInputVo, PostCreateInputVo, PostUpdateInputVo>
|
|
{
|
|
|
|
}
|
|
}
|