HuanMengAdmin/admin-server/MiaoYu.Repository.ChatAI.Admin/Entities/Apps/T_User.cs
zpc 9183ee09c0 Revert "基础项目"
This reverts commit 5bef68f4aa.
2025-11-11 23:15:34 +08:00

86 lines
1.8 KiB
C#
Raw Permalink 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.

namespace MiaoYu.Repository.ChatAI.Admin.Entities.Apps;
/// <summary>
/// 用户表
/// </summary>
[EntityDescription(FieldIgnored = true)]
public class T_User : DefaultEntityV4
{
/// <summary>
/// 用户昵称 => 备注: 用户昵称
/// </summary>
public string? NickName { get; set; }
/// <summary>
/// 用户姓名 => 备注: 用户姓名
/// </summary>
public string? UserName { get; set; }
/// <summary>
/// 手机号 => 备注: 绑定的手机号
/// </summary>
public string? PhoneNum { get; set; }
/// <summary>
/// 邮箱 => 备注: 绑定的邮箱
/// </summary>
public string? Email { get; set; }
/// <summary>
/// 是否活跃 => 备注: 是否活跃
/// </summary>
public Boolean IsActive { get; set; }
/// <summary>
/// 创建时间 => 备注: 创建时间
/// </summary>
public DateTime CreatedAt { get; set; }
/// <summary>
/// 最后一次登录方式,1手机号 => 备注: 最后一次登录方式,1手机号
/// </summary>
public Int32 LastLoginTypeAt { get; set; }
/// <summary>
/// 登录时间 => 备注: 最后一次登录时间
/// </summary>
public DateTime LastLoginAt { get; set; }
/// <summary>
/// 修改时间 => 备注: 修改时间
/// </summary>
public DateTime UpdatedAt { get; set; }
/// <summary>
/// 首次注册方式 => 备注: 首次注册方式
/// </summary>
public Int32 RegisterType { get; set; }
/// <summary>
/// Ip地址 => 备注: Ip地址
/// </summary>
public string? Ip { get; set; }
/// <summary>
/// 0正常1注销
/// </summary>
public virtual int State { get; set; }
/// <summary>
/// 是否是测试账号
/// </summary>
public virtual bool? IsTest { get; set; }
}