Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Service/ServiceTemplate/CommentService.cs
2022-12-01 13:38:06 +08:00

15 lines
355 B
C#

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)
{
}
}
}