Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Service/RABC/UserPostService.cs

16 lines
409 B
C#
Raw Normal View History

2022-09-13 17:05:53 +08:00
using SqlSugar;
2023-01-01 23:06:11 +08:00
using Yi.Framework.Interface.RABC;
using Yi.Framework.Model.RABC.Entitys;
2022-09-13 17:05:53 +08:00
using Yi.Framework.Repository;
2023-01-01 23:06:11 +08:00
using Yi.Framework.Service.Base;
2022-09-13 17:05:53 +08:00
2023-01-01 23:06:11 +08:00
namespace Yi.Framework.Service.RABC
2022-09-13 17:05:53 +08:00
{
public partial class UserPostService : BaseService<UserPostEntity>, IUserPostService
{
public UserPostService(IRepository<UserPostEntity> repository) : base(repository)
{
}
}
}