using System;
using System.Collections.Generic;
using System.Text;
namespace Utility.Entity
{
public class LogModel
{
///
/// 开始执行时间
///
public string BeginTime { get; set; }
///
/// 结束时间
///
public string EndTime { get; set; }
///
/// 耗时(秒)
///
public string ExecuteTime { get; set; }
///
/// 任务名称
///
public string JobName { get; set; }
///
/// 结果
///
public string Result { get; set; }
///
/// 异常消息
///
public string ErrorMsg { get; set; }
}
public class LogUrlModel : LogModel
{
///
/// 请求地址
///
public string Url { get; set; }
///
/// 请求类型
///
public string RequestType { get; set; }
///
/// 请求参数
///
public string Parameters { get; set; }
}
}