using Abp.Application.Services.Dto;
using VberZero.BaseSystem;
namespace VberZero.DomainService.AutoCompletes;
public interface IAutoCompleteQueryManager
{
///
/// 添加/修改新的查询
///
///
///
///
///
Task InsertOrUpdate(string codeKey, string value, string name);
///
/// 添加/修改新的查询
///
///
///
///
/// 给记录添加扩展值
///
Task InsertOrUpdate(string codeKey, string value, string name, Func fun);
///
/// 查询指定记录
///
///
///
///
Task QueryItem(string codeKey, string value);
///
/// 查询记录列表
///
///
///
///
Task> QueryItems(string codeKey, string name);
///
/// 查询记录列表分页
///
///
///
///
///
///
Task> PageItems(string codeKey, string keywords, int skip, int take);
}