using System.Collections.Generic; using System.Threading.Tasks; using System.Web.Mvc; using WePlatform.BaseSystem.AttachFile.Dto; using WePlatform.CommonManager.AttachFiles; using IwbZero.AppServiceBase; namespace WePlatform.BaseSystem.AttachFile { public interface IAttachFilesAppService : IIwbZeroAsyncCrudAppService { Task FileUpload(AttachFileCreateDto input); Task> QueryAttaches(QueryAttachDto input); Task QueryAttach(QueryAttachDto input); Task> GetTableSelectList(string tableName, string colName); Task GetTableSelectStr(string tableName, string colName); } }