using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using SqlSugar;
|
using WIDESEA_Core.DB.Models;
|
namespace WIDESEA_Model.Models
|
{
|
/// <summary>
|
/// 区域表
|
///</summary>
|
[SugarTable("Dt_HostErrorMessage")]
|
public class Dt_HostErrorMessage : BaseEntity
|
{
|
/// <summary>
|
/// 备 注:区域ID
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true,IsIdentity = true) ]
|
public int id { get; set; }
|
|
/// <summary>
|
/// 备 注:上报系统
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "ReportName")]
|
public string ReportName { get; set; }
|
|
/// <summary>
|
/// 备 注:异常编码
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName= "ErrorCode") ]
|
public string ErrorCode { get; set; }
|
|
/// <summary>
|
/// 备 注:Message
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "ErrorMessage")]
|
public string ErrorMessage { get; set; }
|
|
/// <summary>
|
/// 备 注:AlarmSource
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName= "AlarmSource") ]
|
public string AlarmSource { get; set; }
|
/// <summary>
|
/// 备 注:位置
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "Location")]
|
public string Location { get; set; }
|
/// <summary>
|
/// 备 注:等级
|
/// 默认值:
|
///</summary>
|
[SugarColumn(ColumnName = "Grade")]
|
public string Grade { get; set; }
|
|
|
}
|
|
}
|