using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XdCxRhDW.Dto
{
///
/// 日志信息
///
public class LogInfoDto
{
///
///
///
public LogInfoDto()
{
this.LogTime = DateTime.Now;
this.LogType = EnumLogTypeDto.Info;
}
///
/// 所属模块
///
public string Module { get; set; }
///
/// 时间
///
public DateTime LogTime { get; set; }
///
/// 日志类型
///
public EnumLogTypeDto LogType { get; set; }
///
/// 内容
///
public string Msg { get; set; }
}
///
/// 日志模块结果模型
///
public class LogModulesResDto
{
///
/// 所属模块
///
public string Module { get; set; }
}
}