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.
|
|
|
|
|
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>
|
|
|
|
|
|
/// <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>־<EFBFBD>ӿ<EFBFBD>
|
|
|
|
|
|
/// </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>
|
|
|
|
|
|
/// ҵ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̨==><EFBFBD><EFBFBD><EFBFBD><EFBFBD>5<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>־
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
Task<IResultOutput> OperationBusinessWorkbench();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|