namespace Admin.Core.Service.Admin.OprationLog.Input
{
    /// 
    /// 添加
    /// 
    public class OprationLogAddInput
    {
        /// 
        /// 姓名
        /// 
        public string RealName { 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 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; }
    }
}