using System;
namespace Admin.Core.Service.Admin.OprationLog.Output
{
public class OprationLogListOutput
{
///
/// 编号
///
public long Id { get; set; }
///
/// 昵称
///
public string NickName { get; set; }
///
/// 创建者
///
public string CreatedUserName { get; set; }
///
/// 接口名称
///
public string ApiLabel { get; set; }
///
/// 接口地址
///
public string ApiPath { get; set; }
///
/// 接口提交方法
///
public string ApiMethod { get; set; }
///
/// IP
///
public string IP { get; set; }
///
/// 浏览器
///
public string Browser { get; set; }
///
/// 操作系统
///
public string Os { get; set; }
///
/// 设备
///
public string Device { get; set; }
///
/// 耗时(毫秒)
///
public long ElapsedMilliseconds { get; set; }
///
/// 操作状态
///
public bool Status { get; set; }
///
/// 操作消息
///
public string Msg { get; set; }
///
/// 创建时间
///
public DateTime? CreatedTime { get; set; }
}
}