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!; /// /// ip /// public string? LastLoginIp1 { get; set; } /// /// ip邮编 /// public string? IpAdcode { get; set; } public string? IpProvince { get; set; } public string? IpCity { get; set; } }