feat: 添加文件模块
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Volo.Abp.Application.Dtos;
|
||||
|
||||
namespace Yi.Framework.Rbac.Application.FileManger
|
||||
{
|
||||
public class FileGetListOutputDto:EntityDto<Guid>
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Volo.Abp.Application.Services;
|
||||
using Yi.Framework.Rbac.Application.FileManger;
|
||||
|
||||
namespace Yi.Framework.Rbac.Application.Contracts.IServices
|
||||
{
|
||||
public interface IFileService : IApplicationService
|
||||
{
|
||||
Task<string> GetReturnPathAsync(Guid code, bool? isThumbnail);
|
||||
Task<List<FileGetListOutputDto>> Post(IFormFileCollection file);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user