using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
namespace WIDESEAWCS_Model.Models
{
    /// 
    /// 错误信息
    /// 
    [SugarTable(nameof(dt_errormsgInfo), "错误信息")]
    public class dt_errormsgInfo : BaseEntity
    {
        /// 
        /// 主键
        /// 
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
        /// 
        /// 描述
        /// 
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "描述")]
        public string mesg { get; set; }
        /// 
        /// 错误信息
        /// 
        [SugarColumn(IsNullable = true, Length = 255, ColumnDescription = "错误信息")]
        public string errormsg { get; set; }
    }
}