|
|
|
|
using System;
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace SlnMesnac.Model.domain
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 异常监控编码对应表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("BaseCode"), TenantAttribute("mes")]
|
|
|
|
|
[DataContract(Name = "BaseCode 基础表")]
|
|
|
|
|
public class BaseCode
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "code")]
|
|
|
|
|
public string Code { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "state")]
|
|
|
|
|
public string State { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 1 RFid 2 视觉
|
|
|
|
|
///</summary>
|
|
|
|
|
[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; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|