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.
34 lines
1.0 KiB
34 lines
1.0 KiB
using ATS.NonCustodial.Application.Contracts.Interfaces.Logs.LoginLog.Input; |
|
using ATS.NonCustodial.Application.Contracts.Interfaces.Logs.OprationLog.Input; |
|
using ATS.NonCustodial.Shared.Common.UnifiedResults; |
|
|
|
namespace ATS.NonCustodial.Application.Contracts.Interfaces.Logs.OprationLog |
|
{ |
|
/// <summary> |
|
/// 操作日志接口 |
|
/// </summary> |
|
/// Author:mxg |
|
/// CreatedTimed:2022-05-14 09:32 PM |
|
public interface IOperationLogService |
|
{ |
|
/// <summary> |
|
/// |
|
/// </summary> |
|
/// <param name="input"></param> |
|
/// <returns></returns> |
|
Task<IResultOutput> GetPageAsync(LogGetPageDto input); |
|
|
|
/// <summary> |
|
/// |
|
/// </summary> |
|
/// <param name="input"></param> |
|
/// <returns></returns> |
|
Task<IResultOutput> AddAsync(OprationLogAddInput input); |
|
|
|
/// <summary> |
|
/// 业务工作台==>最新5条操作日志 |
|
/// </summary> |
|
/// <returns></returns> |
|
Task<IResultOutput> OperationBusinessWorkbench(); |
|
} |
|
} |