| 123456789101112131415161718 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using System.Web.Mvc;
- using WeApp.BaseSystem.AttachFile.Dto;
- using WeApp.CommonManager.AttachFiles;
- using IwbZero.AppServiceBase;
- namespace WeApp.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<List<SelectListItem>> GetTableSelectList(string tableName, string colName);
- Task<string> GetTableSelectStr(string tableName, string colName);
- }
- }
|