IAttachFilesApplicationService.cs 715 B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using System.Web.Mvc;
  4. using WeApp.BaseSystem.AttachFile.Dto;
  5. using WeApp.CommonManager.AttachFiles;
  6. using IwbZero.AppServiceBase;
  7. namespace WeApp.BaseSystem.AttachFile
  8. {
  9. public interface IAttachFilesAppService : IIwbZeroAsyncCrudAppService<AttachFileDto, int, IwbPagedRequestDto>
  10. {
  11. Task FileUpload(AttachFileCreateDto input);
  12. Task<List<AttachFileDto>> QueryAttaches(QueryAttachDto input);
  13. Task<AttachFileDto> QueryAttach(QueryAttachDto input);
  14. Task<List<SelectListItem>> GetTableSelectList(string tableName, string colName);
  15. Task<string> GetTableSelectStr(string tableName, string colName);
  16. }
  17. }