31 lines
771 B
C#
31 lines
771 B
C#
using Nirvana.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using YBDevice.Entity;
|
|
|
|
namespace YBDevice.Application.Logger
|
|
{
|
|
/// <summary>
|
|
/// 日志管理
|
|
/// </summary>
|
|
public interface INoticeLoggerService
|
|
{
|
|
/// <summary>
|
|
/// 通知日志列表
|
|
/// </summary>
|
|
/// <param name="param"></param>
|
|
/// <returns></returns>
|
|
Task<PageParms<YB_NoticeLogger>> GetListAsync(QueryParams param);
|
|
|
|
/// <summary>
|
|
/// 操作日志列表
|
|
/// </summary>
|
|
/// <param name="param"></param>
|
|
/// <returns></returns>
|
|
Task<PageParms<AuditListS2CDto>> GetAuditListAsync(QueryParams param);
|
|
}
|
|
}
|