using System;
namespace HT.Cloud.Code
{
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 UserName { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 异常信息
///
public string ExceptionInfo { get; set; }
///
/// 异常来源
///
public string ExceptionSource { get; set; }
///
/// 异常信息备注
///
public string ExceptionRemark { get; set; }
}
}