添加项目文件。

This commit is contained in:
2023-03-13 15:00:34 +08:00
parent 42bf06ca3e
commit 1d73df3235
1205 changed files with 185078 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
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; }
}