Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Service/RABC/UserPostService.cs
2023-01-01 23:06:11 +08:00

16 lines
409 B
C#

using SqlSugar;
using Yi.Framework.Interface.RABC;
using Yi.Framework.Model.RABC.Entitys;
using Yi.Framework.Repository;
using Yi.Framework.Service.Base;
namespace Yi.Framework.Service.RABC
{
public partial class UserPostService : BaseService<UserPostEntity>, IUserPostService
{
public UserPostService(IRepository<UserPostEntity> repository) : base(repository)
{
}
}
}