Files
WCS/Cowain.Base/IServices/ILogService.cs

19 lines
434 B
C#
Raw Normal View History

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);
}