评论建表

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

@@ -0,0 +1,14 @@
using SqlSugar;
using Yi.Framework.Interface;
using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
namespace Yi.Framework.Service
{
public partial class CommentService : BaseService<CommentEntity>, ICommentService
{
public CommentService(IRepository<CommentEntity> repository) : base(repository)
{
}
}
}