namespace ATS.NonCustodial.Application.Contracts.Interfaces.Logs.OprationLog.Input { /// /// 添加 /// /// Author:mxg /// CreatedTimed:2022-05-14 09:32 PM public class OprationLogAddInput { /// /// 昵称 /// public string? NickName { get; set; } /// /// 接口名称 /// public string? ApiLabel { get; set; } /// /// 接口地址 /// public string? ApiPath { get; set; } /// /// 接口提交方法 /// public string? ApiMethod { get; set; } /// /// IP /// public string? IpAddress { get; set; } /// /// 浏览器 /// public string? Browser { get; set; } /// /// 操作系统 /// public string? Os { get; set; } /// /// 设备 /// public string? Device { get; set; } /// /// 浏览器信息 /// public string? BrowserInfo { get; set; } /// /// 耗时(毫秒) /// public long ElapsedMilliseconds { get; set; } /// /// 操作状态 /// public bool? Status { get; set; } /// /// 操作消息 /// public string? Msg { get; set; } /// /// 操作参数 /// public string? Params { get; set; } /// /// 操作结果 /// public string? Result { get; set; } /// /// 异常信息 /// public string? Exception { get; set; } } }