评论建表

This commit is contained in:
陈淳
2022-12-01 13:38:06 +08:00
parent a2ca897fca
commit e9bcd29e36
9 changed files with 184 additions and 11 deletions

View File

@@ -6,6 +6,6 @@ namespace Yi.Framework.Interface
{
public partial interface IAgreeService : IBaseService<AgreeEntity>
{
Task<bool> OperateAsync(long articleId, long userId);
Task<bool> OperateAsync(long articleOrCommentId, long userId);
}
}

View File

@@ -0,0 +1,9 @@
using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
namespace Yi.Framework.Interface
{
public partial interface ICommentService:IBaseService<CommentEntity>
{
}
}