ErrorCodeExcelModel.cs 715 Bytes
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;

namespace HHECS.Model.ExcelModels
{
    /// <summary>
    /// 异常指引导出
    /// </summary>
    public class ErrorCodeExcelModel
    {
        [Description("Id")]
        public int? Id { get; set; }

        [Description("错误编码")]
        public string Code { get; set; }

        [Description("所属模块")]
        public string Module { get; set; }

        [Description("等级")]
        public int Level { get; set; }

        [Description("描述")]
        public string Description { get; set; }

        [Description("解决方案")]
        public string Sulotion { get; set; }
    }
}