You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
894 B
57 lines
894 B
3 months ago
|
using Kean.Infrastructure.Configuration;
|
||
|
using System;
|
||
|
|
||
|
namespace Kean.Application.Query.ViewModels
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 记录信息视图
|
||
|
/// </summary>
|
||
|
public sealed class ApiRecord
|
||
|
{
|
||
|
public int Id
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
|
||
|
public string UserName
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
|
||
|
public string ControllerName
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
|
||
|
public string Method
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
|
||
|
public string RequestBody
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
|
||
|
public int StatusCode
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
|
||
|
public string ResponseBody
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
|
||
|
public DateTime RequestTime
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
|
||
|
public DateTime ResponseTime
|
||
|
{
|
||
|
get; set;
|
||
|
}
|
||
|
}
|
||
|
}
|