mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-15 14:06:51 +08:00
18 lines
546 B
C#
18 lines
546 B
C#
|
|
using Yi.BBS.Application.Contracts.Forum;
|
||
|
|
using NET.AutoWebApi.Setting;
|
||
|
|
using Yi.BBS.Application.Contracts.Forum.Dtos;
|
||
|
|
using Yi.BBS.Domain.Forum.Entities;
|
||
|
|
using Yi.Framework.Ddd.Services;
|
||
|
|
|
||
|
|
namespace Yi.BBS.Application.Forum
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Comment服务实现
|
||
|
|
/// </summary>
|
||
|
|
[AppService]
|
||
|
|
public class CommentService : CrudAppService<CommentEntity, CommentGetOutputDto, CommentGetListOutputDto, long, CommentGetListInputVo, CommentCreateInputVo, CommentUpdateInputVo>,
|
||
|
|
ICommentService, IAutoApiService
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|