using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; namespace Yi.Framework.Interface.Base.Crud { public interface IReadOnlyAppService : IReadOnlyAppService { } public interface IReadOnlyAppService : IApplicationService { /// /// 根据Id获取数据 /// /// /// Task GetByIdAsync(TKey id); /// /// 获取全部 /// /// Task> GetListAsync(); /// /// 根据url参数查询 /// /// /// //Task> GetByUrl(List input = null); } }