OperationLogExcelModel.cs 733 Bytes
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;

namespace HHECS.Model.ExcelModels
{
    public class OperationLogExcelModel
    {
        [Description("内部Id")]
        public int? Id { get; set; }

        [Description("标题")]
        public string Title { get; set; }

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

        [Description("结果")]
        public string Result { get; set; }

        [Description("内容")]
        public string Content { get; set; }

        [Description("创建时间")]
        public DateTime? Created { get; set; }

        [Description("创建人")]
        public string CreatedBy { get; set; }
    }
}