using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JinYuan.Models { public class SysLog { /// /// 插入时间 /// public string InsertTime { get; set; } /// /// 报警类型 /// public string LogType { get; set; } /// /// 日志信息 /// public string Note { get; set; } /// /// 操作人员 /// public string Operater { get; set; } /// /// 变量名称 /// public string VarName { get; set; } /// /// 报警设置值 /// public string AlarmSet { get; set; } /// /// 报警值 /// public string AlarmValue { get; set; } /// /// 报警类型 /// public string AlarmType { get; set; } } }