| 1234567891011121314151617181920 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using System.Web.Mvc;
- using Abp.Application.Services.Dto;
- using ContractService.BaseSystem.AttachFile.Dto;
- using ContractService.CommonManager.AttachFiles;
- using IwbZero.AppServiceBase;
- namespace ContractService.BaseSystem.AttachFile
- {
- public interface IAttachFilesAppService : IIwbZeroAsyncCrudAppService<AttachFileDto, int, IwbPagedRequestDto>
- {
- Task FileUpload(AttachFileCreateDto input);
- Task<List<AttachFileDto>> QueryAttaches(QueryAttachDto input);
- Task<AttachFileDto> QueryAttach(QueryAttachDto input);
- Task DeleteAttach(EntityDto<int> input);
- Task<List<SelectListItem>> GetTableSelectList(string tableName, string colName);
- Task<string> GetTableSelectStr(string tableName, string colName);
- }
- }
|