using System.Collections.Generic; namespace EntrustSettle.Common.LogHelper { public class ApiWeek { public string week { get; set; } public string url { get; set; } public int count { get; set; } } public class ApiDate { public string date { get; set; } public int count { get; set; } } public class ActiveUserVM { public string user { get; set; } public int count { get; set; } } public class RequestApiWeekView { public List columns { get; set; } public string rows { get; set; } } public class AccessApiDateView { public string[] columns { get; set; } public List rows { get; set; } } public class RequestInfo { public string Ip { get; set; } public string Url { get; set; } public string Datetime { get; set; } public string Date { get; set; } public string Week { get; set; } } public class AOPLogInfo { /// /// 请求时间 /// public string RequestTime { get; set; } = string.Empty; /// /// 操作人员 /// public string OpUserName { get; set; } = string.Empty; /// /// 请求方法名 /// public string RequestMethodName { get; set; } = string.Empty; /// /// 请求参数名 /// public string RequestParamsName { get; set; } = string.Empty; /// /// 请求参数数据JSON /// public string RequestParamsData { get; set; } = string.Empty; /// /// 请求响应间隔时间 /// public string ResponseIntervalTime { get; set; } = string.Empty; /// /// 响应时间 /// public string ResponseTime { get; set; } = string.Empty; /// /// 响应结果 /// public string ResponseJsonData { get; set; } = string.Empty; } public class AOPLogExInfo { public AOPLogInfo ApiLogAopInfo { get; set; } /// /// 异常 /// public string InnerException { get; set; } = string.Empty; /// /// 异常信息 /// public string ExMessage { get; set; } = string.Empty; } public class RequestLogInfo { /// /// 请求地址 /// public string Path { get; set; } /// /// 请求参数 /// public string QueryString { get; set; } /// /// Body参数 /// public string BodyData { get; set; } } }