using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XdCxRhDW.Entity
{
///
/// 日志表
///
[Table("LogRes")]
public class LogRes : BaseEntity
{
///
/// 所属模块
///
[Index]
public string Module { get; set; }
///
/// 时间
///
[Index]
public DateTime LogTime { get; set; }
///
/// 日志类型
///
[Index]
public EnumLogType LogType { get; set; }
///
/// 内容
///
public string Msg { get; set; }
}
}