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

16 lines
389 B
C#
Raw Normal View History

2022-10-12 14:20:03 +08:00
using SqlSugar;
2023-01-01 23:06:11 +08:00
using Yi.Framework.Interface.RABC;
using Yi.Framework.Model.RABC.Entitys;
2022-10-12 14:20:03 +08:00
using Yi.Framework.Repository;
2023-01-01 23:06:11 +08:00
using Yi.Framework.Service.Base;
2022-10-12 14:20:03 +08:00
2023-01-01 23:06:11 +08:00
namespace Yi.Framework.Service.RABC
2022-10-12 14:20:03 +08:00
{
public partial class FileService : BaseService<FileEntity>, IFileService
{
public FileService(IRepository<FileEntity> repository) : base(repository)
{
}
}
}