using System.Collections.Generic; using System.Threading.Tasks; using System.Web.Mvc; using IwbZero.AppServiceBase; using ShwasherSys.BaseSysInfo.SysAttachFiles.Dto; namespace ShwasherSys.BaseSysInfo.SysAttachFiles { public interface ISysAttachFileAppService : IIwbAsyncCrudAppService { Task> QueryAttach(QueryAttachDto input); Task> GetTableSelectList(string tableName, string colName); Task GetTableSelectStr(string tableName, string colName); Task> GetSelectList(); Task GetSelectStr(); } }