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

16 lines
389 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 FileService : BaseService<FileEntity>, IFileService
{
public FileService(IRepository<FileEntity> repository) : base(repository)
{
}
}
}