mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 16:36:37 +08:00
18 lines
535 B
C#
18 lines
535 B
C#
|
|
using Yi.RBAC.Application.Contracts.Identity;
|
||
|
|
using NET.AutoWebApi.Setting;
|
||
|
|
using Yi.RBAC.Application.Contracts.Identity.Dtos;
|
||
|
|
using Yi.RBAC.Domain.Identity.Entities;
|
||
|
|
using Yi.Framework.Ddd.Services;
|
||
|
|
|
||
|
|
namespace Yi.RBAC.Application.Identity
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Post服务实现
|
||
|
|
/// </summary>
|
||
|
|
[AppService]
|
||
|
|
public class PostService : CrudAppService<PostEntity, PostGetOutputDto, PostGetListOutputDto, long, PostGetListInputVo, PostCreateInputVo, PostUpdateInputVo>,
|
||
|
|
IPostService, IAutoApiService
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|