添加项目文件。

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,64 @@
using JNPF.DependencyInjection;
using System.Text.Json.Serialization;
namespace JNPF.Systems.Entitys.Dto.UsersCurrent;
/// <summary>
/// 当前用户系统日记输出.
/// </summary>
[SuppressSniffer]
public class UsersCurrentSystemLogOutput
{
/// <summary>
/// 登录时间.
/// </summary>
public DateTime? creatorTime { get; set; }
/// <summary>
/// 登录用户.
/// </summary>
public string userName { get; set; }
/// <summary>
/// 登录IP.
/// </summary>
public string ipaddress { get; set; }
/// <summary>
/// 登录摘要.
/// </summary>
public string platForm { get; set; }
/// <summary>
/// 请求地址.
/// </summary>
public string requestURL { get; set; }
/// <summary>
/// 请求类型.
/// </summary>
public string requestMethod { get; set; }
/// <summary>
/// 请求耗时.
/// </summary>
public int? requestDuration { get; set; }
/// <summary>
/// 模块名称.
/// </summary>
[JsonIgnore]
public string moduleName { get; set; }
/// <summary>
/// 用户ID.
/// </summary>
[JsonIgnore]
public string userId { get; set; }
/// <summary>
/// 类型.
/// </summary>
[JsonIgnore]
public int? category { get; set; }
}