using System; namespace Learun.Loger { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创建人:陈彬彬 /// 日 期:2017.03.04 /// 描 述:log日志消息模型类 /// public class LogMessage { /// /// 操作时间 /// public DateTime OperationTime { get; set; } /// /// Url地址 /// public string Url { get; set; } /// /// 类名 /// public string Class { get; set; } /// /// IP /// public string Ip { get; set; } /// /// 主机 /// public string Host { get; set; } /// /// 浏览器 /// public string Browser { get; set; } /// /// 操作人 /// public string UserName { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// 异常信息 /// public string ExceptionInfo { get; set; } /// /// 异常来源 /// public string ExceptionSource { get; set; } /// /// 异常信息备注 /// public string ExceptionRemark { get; set; } } }