InterfaceLogExcelModel.cs 1.08 KB
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Model.ExcelModels
{
    /// <summary>
    /// 接口日志导出
    /// </summary>
    public class InterfaceLogExcelModel
    {
        [Description("内部Id")]
        public int? Id { get; set; }

        [Description("接口名")]
        public string InterfaceName { get; set; }

        [Description("请求")]
        public string Request { get; set; }

        [Description("回复")]
        public string Response { get; set; }


        [Description("标志")]
        public string Flag { get; set; }

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

        [Description("备注")]
        public string Remark { get; set; }

        [Description("开始调用时间")]
        public DateTime? Created { get; set; }

        [Description("调用结束时间")]
        public DateTime? Updated { get; set; }

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

    }
}