using System; using System.Collections.Generic; using System.Threading.Tasks; using Abp.Application.Services.Dto; using ContractService.BaseInfo; namespace ContractService.CommonManager.Query { public interface IAcQueryManager { /// /// 添加/修改新的查询 /// /// /// /// /// /// Task InsertOrUpdate(string tKey, string cKey, string vKey, string nKey); /// /// 添加/修改新的查询 /// /// /// /// /// /// 给记录添加扩展值 /// Task InsertOrUpdate(string tKey, string cKey, string vKey, string nKey, Func fun); /// /// 查询指定记录 /// /// /// /// /// Task QueryItem(string tKey, string cKey, string vKey); /// /// 查询记录列表 /// /// /// /// /// Task> QueryItems(string tKey, string cKey, string nKey); /// /// 查询记录列表分页 /// /// /// /// /// /// /// Task> PageItems(string tKey, string cKey, string nKey, int skip, int take); } }