- using System.Threading.Tasks;
- namespace GxPress.Service.Interface.FileLibrary
- {
- public interface IFileLibraryService:IService
- {
- /// <summary>
- /// 添加文件
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- Task<int> InsertAsync(Entity.FileLibrary request);
- }
- }
|