12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- using Furion.DatabaseAccessor;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace YBEE.EQM.Core
- {
- /// <summary>
- /// 访问日志表
- /// </summary>
- [Comment("访问日志表")]
- public partial class SysLogVis : IEntity
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
- public long Id { get; set; }
- /// <summary>
- /// 名称
- /// </summary>
- [Comment("名称")]
- [StringLength(100)]
- public string Name { get; set; }
- /// <summary>
- /// 是否执行成功
- /// </summary>
- [Comment("是否执行成功")]
- public bool Success { get; set; }
- /// <summary>
- /// 具体消息
- /// </summary>
- [Comment("具体消息")]
- public string Message { get; set; }
- /// <summary>
- /// IP
- /// </summary>
- [Comment("IP")]
- [StringLength(20)]
- public string Ip { get; set; }
- /// <summary>
- /// 地址
- /// </summary>
- [Comment("地址")]
- [StringLength(1024)]
- public string Location { get; set; }
- /// <summary>
- /// 浏览器
- /// </summary>
- [Comment("浏览器")]
- [StringLength(100)]
- public string Browser { get; set; }
- /// <summary>
- /// 操作系统
- /// </summary>
- [Comment("操作系统")]
- [StringLength(100)]
- public string Os { get; set; }
- /// <summary>
- /// 访问类型
- /// </summary>
- [Comment("访问类型")]
- public LoginType VisType { get; set; }
- /// <summary>
- /// 访问时间
- /// </summary>
- [Comment("访问时间")]
- public DateTime? VisTime { get; set; }
- /// <summary>
- /// 访问人
- /// </summary>
- [Comment("访问人")]
- [StringLength(50)]
- public string Account { get; set; }
- }
- }
|