using System; namespace Learun.Loger { /// /// 版 本 PIT-ADMS V7.0.3 敏捷开发框架 /// Copyright (c) 2013-2018 Hexagon PPM /// 创建人:研发部 /// 日 期: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; } } }