Files
zsxt_nbzs_h5/Api/Ewide.Core/Entity/SysLogVis.cs

75 lines
1.8 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 Furion.DatabaseAccessor;
using Microsoft.EntityFrameworkCore;
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace Ewide.Core
{
/// <summary>
/// 访问日志表
/// </summary>
[Table("sys_log_vis")]
[Comment("访问日志表")]
public class SysLogVis : EntityBase
{
/// <summary>
/// 名称
/// </summary>
[Comment("名称")]
public string Name { get; set; }
/// <summary>
/// 是否执行成功Y-是N-否)
/// </summary>
[Comment("是否执行成功")]
public bool Success { get; set; }
/// <summary>
/// 具体消息
/// </summary>
[Comment("具体消息")]
public string Message { get; set; }
/// <summary>
/// IP
/// </summary>
[Comment("IP")]
public string Ip { get; set; }
/// <summary>
/// 地址
/// </summary>
[Comment("地址")]
public string Location { get; set; }
/// <summary>
/// 浏览器
/// </summary>
[Comment("浏览器")]
public string Browser { get; set; }
/// <summary>
/// 操作系统
/// </summary>
[Comment("操作系统")]
public string Os { get; set; }
/// <summary>
/// 访问类型(字典 1登入 2登出
/// </summary>
[Comment("访问类型")]
public int? VisType { get; set; }
/// <summary>
/// 访问时间
/// </summary>
[Comment("访问时间")]
public DateTimeOffset VisTime { get; set; }
/// <summary>
/// 访问人
/// </summary>
[Comment("访问人")]
public string Account { get; set; }
}
}