using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using SqlSugar;
|
using WIDESEAWCS_Core.DB.Models;
|
using WIDESEAWCS_Core.Tenants;
|
|
namespace WIDESEAWCS_Model.Models
|
{
|
[SugarTable(nameof(Dt_Interfacerecord), "接口日志信息")]
|
public class Dt_Interfacerecord
|
{
|
/// <summary>
|
/// 主键
|
/// </summary>
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int Id { get; set; }
|
|
/// <summary>
|
/// 请求者
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "请求者")]
|
public string Request { get; set; }
|
|
/// <summary>
|
/// 请求参数
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "请求参数")]
|
public string RequestParam { get; set; }
|
|
/// <summary>
|
/// 响应者
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "响应者")]
|
public string Response { get; set; }
|
|
/// <summary>
|
/// 响应参数
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "响应参数")]
|
public string ResponseParam { get; set; }
|
|
/// <summary>
|
/// 开始时间
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "开始时间")]
|
public DateTime? BeginDate { get; set; }
|
|
/// <summary>
|
/// 时长
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "时长")]
|
public int? ElapsedTime { get; set; }
|
|
/// <summary>
|
/// 结束时间
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "结束时间")]
|
public DateTime EndDate { get; set; }
|
|
/// <summary>
|
/// 响应状态
|
/// </summary>
|
[SugarColumn(IsNullable = true, ColumnDescription = "响应状态")]
|
public int? Success { get; set; }
|
|
/// <summary>
|
/// 请求地址
|
/// </summary>
|
[SugarColumn(IsNullable = true, Length = 2000, ColumnDescription = "请求地址")]
|
public string Url { get; set; }
|
}
|
}
|