using System;
using System.Runtime.Serialization;
using SqlSugar;
namespace SlnMesnac.Model.domain
{
///
/// 异常监控编码对应表
///
[SugarTable("BaseCode"), TenantAttribute("mes")]
[DataContract(Name = "BaseCode 基础表")]
public class BaseCode
{
///
///
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
///
///
[SugarColumn(ColumnName = "code")]
public string Code { get; set; }
///
///
///
[SugarColumn(ColumnName = "state")]
public string State { get; set; }
///
/// 1 RFid 2 视觉
///
[SugarColumn(ColumnName = "category")]
public int Category { get; set; }
}
[SugarTable("BaseLog"), TenantAttribute("mes")]
[DataContract(Name = "BaseLog 基础表")]
public class BaseLog
{
public BaseLog()
{
this.CreateTime = DateTime.Now;
}
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
[SugarColumn(ColumnName = "createtime")]
public DateTime CreateTime { get; set; }
[SugarColumn(ColumnName = "log_level")]
public string LogLevel { get; set; }
[SugarColumn(ColumnName = "content")]
public string Content { get; set; }
[SugarColumn(ColumnName = "err_msg")]
public string ErrMsg { get; set; }
}
}