using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.DB.Models;
namespace WIDESEA_Model.Models
{
///
/// 异常信息
///
[SugarTable(nameof(Dt_MessageInfo), "异常信息")]
public class Dt_MessageInfo : BaseEntity
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int Id { get; set; }
///
/// 异常信息名称
///
[SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "异常信息名称")]
public string MessageName { get; set; }
///
/// 异常信息
///
[SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "异常信息")]
public string MessageInfo { get; set; }
///
/// 状态
///
[SugarColumn(IsNullable = true, DefaultValue = "0", ColumnDescription = "状态")]
public int MessageStatus { get; set; }
}
}