using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Systems.Entitys.System;
///
/// 数据接口日志
/// 版 本:V3.2
/// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com)
/// 日 期:2021-06-01.
///
[SugarTable("BASE_DATAINTERFACELOG")]
public class DataInterfaceLogEntity : EntityBase
{
///
/// 调用接口id.
///
[SugarColumn(ColumnName = "F_INVOKID")]
public string InvokId { get; set; }
///
/// 调用时间.
///
[SugarColumn(ColumnName = "F_INVOKTIME")]
public DateTime? InvokTime { get; set; }
///
/// 调用者.
///
[SugarColumn(ColumnName = "F_USERID")]
public string UserId { get; set; }
///
/// 请求ip.
///
[SugarColumn(ColumnName = "F_INVOKIP")]
public string InvokIp { get; set; }
///
/// 请求设备.
///
[SugarColumn(ColumnName = "F_INVOKDEVICE")]
public string InvokDevice { get; set; }
///
/// 请求耗时.
///
[SugarColumn(ColumnName = "F_INVOKWASTETIME")]
public int? InvokWasteTime { get; set; }
///
/// 请求类型.
///
[SugarColumn(ColumnName = "F_INVOKTYPE")]
public string InvokType { get; set; }
///
/// 授权appid.
///
[SugarColumn(ColumnName = "F_OAUTHAPPID")]
public string OauthAppId { get; set; }
}