IFileLibraryService.cs 349 B

1234567891011121314
  1. using System.Threading.Tasks;
  2. namespace GxPress.Service.Interface.FileLibrary
  3. {
  4. public interface IFileLibraryService:IService
  5. {
  6. /// <summary>
  7. /// 添加文件
  8. /// </summary>
  9. /// <param name="request"></param>
  10. /// <returns></returns>
  11. Task<int> InsertAsync(Entity.FileLibrary request);
  12. }
  13. }