Files
tnb.server/system/Tnb.Systems.Entitys/Entity/System/DataInterfaceLogEntity.cs
2024-04-23 10:16:16 +08:00

62 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Systems.Entitys.System;
/// <summary>
/// 数据接口日志
/// 版 本V3.2
/// 版 权拓通智联科技有限公司http://www.tuotong-tech.com
/// 日 期2021-06-01.
/// </summary>
[SugarTable("BASE_DATAINTERFACELOG")]
public class DataInterfaceLogEntity : EntityBase<string>
{
/// <summary>
/// 调用接口id.
/// </summary>
[SugarColumn(ColumnName = "F_INVOKID")]
public string InvokId { get; set; }
/// <summary>
/// 调用时间.
/// </summary>
[SugarColumn(ColumnName = "F_INVOKTIME")]
public DateTime? InvokTime { get; set; }
/// <summary>
/// 调用者.
/// </summary>
[SugarColumn(ColumnName = "F_USERID")]
public string UserId { get; set; }
/// <summary>
/// 请求ip.
/// </summary>
[SugarColumn(ColumnName = "F_INVOKIP")]
public string InvokIp { get; set; }
/// <summary>
/// 请求设备.
/// </summary>
[SugarColumn(ColumnName = "F_INVOKDEVICE")]
public string InvokDevice { get; set; }
/// <summary>
/// 请求耗时.
/// </summary>
[SugarColumn(ColumnName = "F_INVOKWASTETIME")]
public int? InvokWasteTime { get; set; }
/// <summary>
/// 请求类型.
/// </summary>
[SugarColumn(ColumnName = "F_INVOKTYPE")]
public string InvokType { get; set; }
/// <summary>
/// 授权appid.
/// </summary>
[SugarColumn(ColumnName = "F_OAUTHAPPID")]
public string OauthAppId { get; set; }
}