using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 用户登录记录表 /// public partial class UserLoginLog { /// /// 主键ID /// public uint Id { get; set; } /// /// 用户ID /// public uint UserId { get; set; } /// /// 登录日期 /// public DateOnly LoginDate { get; set; } /// /// 登录时间戳 /// public uint LoginTime { get; set; } /// /// 登录设备 /// public string? Device { get; set; } /// /// 登录IP /// public string? Ip { get; set; } /// /// 登录地点 /// public string? Location { get; set; } /// /// 年份 /// public uint Year { get; set; } /// /// 月份 /// public uint Month { get; set; } /// /// 周数 /// public uint Week { get; set; } }