ChouBox/ChouBox.Model/Entities/UserLoginIp.cs
2025-04-23 19:20:23 +08:00

30 lines
572 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
public partial class UserLoginIp
{
public uint Id { get; set; }
public uint UserId { get; set; }
public uint LastLoginTime { get; set; }
public string LastLoginIp { get; set; } = null!;
/// <summary>
/// ip
/// </summary>
public string? LastLoginIp1 { get; set; }
/// <summary>
/// ip邮编
/// </summary>
public string? IpAdcode { get; set; }
public string? IpProvince { get; set; }
public string? IpCity { get; set; }
}