using Abp.Application.Services; using VberZero.AppService.Attaches.Dto; using VberZero.AppService.Base.Dto; namespace VberZero.AppService.Attaches; public interface IAttachFilesAppServiceBase : IApplicationService { Task FileUpload(AttachDto input); Task> QueryAttaches(QueryAttachDto input); Task QueryAttach(QueryAttachDto input); Task DeleteAttach(VzEntityDto input); Task GetSelectStrWithCodeKey(string codeKey); }