You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
503 B
18 lines
503 B
using Znyc.CloudCar.Model.ViewModels.ReportsCallBack;
|
|
|
|
namespace Znyc.CloudCar.IServices.Browse
|
|
{
|
|
/// <summary>
|
|
/// 浏览记录服务接口
|
|
/// </summary>
|
|
public interface IBrowseService
|
|
{
|
|
/// <summary>
|
|
/// 分页查询浏览记录列表
|
|
/// </summary>
|
|
/// <param name="currentPage"></param>
|
|
/// <param name="pageSize"></param>
|
|
/// <returns></returns>
|
|
Task<ResponseOutput> PageAsync(int currentPage, int pageSize);
|
|
}
|
|
}
|
|
|