19 lines
434 B
C#
19 lines
434 B
C#
using Cowain.Base.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cowain.Base.IServices;
|
|
|
|
public interface ILogService : IBaseService
|
|
{
|
|
/// <summary>
|
|
/// 获取所有用户
|
|
/// </summary>
|
|
Task<List<SerilogViewModel>> GetAllAsync();
|
|
|
|
Task<(List<SerilogViewModel>, int totals)> GetAllAsync(int pageIndex, int pageSize);
|
|
}
|