42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ARW.Model;
|
|
using ARW.Model.Dto.Business.Custom.HistorySearchs;
|
|
using ARW.Model.Models.Business.Custom.HistorySearchs;
|
|
using ARW.Model.Vo.Business.Custom.HistorySearchs;
|
|
|
|
namespace ARW.Service.Business.IBusinessService.Custom.HistorySearchs
|
|
{
|
|
/// <summary>
|
|
/// 历史搜索接口类
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-09
|
|
/// </summary>
|
|
public interface IHistorySearchService : IBaseService<HistorySearch>
|
|
{
|
|
/// <summary>
|
|
/// 获取历史搜索分页列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<PagedInfo<HistorySearchVo>> GetHistorySearchList(HistorySearchQueryDto parm);
|
|
|
|
|
|
/// <summary>
|
|
/// 添加或修改历史搜索
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
Task<string> AddOrUpdateHistorySearch(HistorySearch parm);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|