namespace YBEE.EQM.Application
{
///
/// 请求日志参数
///
public class SysLogOpOutput
{
public long Id { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 是否执行成功
///
public bool Success { get; set; }
///
/// 具体消息
///
public string Message { get; set; }
///
/// ip
///
public string Ip { get; set; }
///
/// 地址
///
public string Location { get; set; }
///
/// 浏览器
///
public string Browser { get; set; }
///
/// 操作系统
///
public string Os { get; set; }
///
/// 请求地址
///
public string Url { get; set; }
///
/// 类名称
///
public string ClassName { get; set; }
///
/// 方法名称
///
public string MethodName { get; set; }
///
/// 请求方式(GET POST PUT DELETE)
///
public string ReqMethod { get; set; }
///
/// 请求参数
///
public string Param { get; set; }
///
/// 返回结果
///
public string Result { get; set; }
///
/// 耗时(毫秒)
///
public long ElapsedTime { get; set; }
///
/// 操作时间
///
public DateTime? OpTime { get; set; }
///
/// 操作人
///
public string Account { get; set; }
}
}