using System; using System.Collections.Generic; namespace MySQLAccess.PGModels; public partial class Userinfo { /// /// 主键ID /// public int Id { get; set; } /// /// 用户名 /// public string? UserName { get; set; } /// /// 密码加密密钥 /// public string? PswEncryption { get; set; } /// /// 密码 /// public string? PassWord { get; set; } /// /// 公司名称 /// public string? CompanyName { get; set; } /// /// 真实姓名 /// public string? RealName { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 手机号码 /// public string? Mobile { get; set; } /// /// 权限信息 /// public string? Permission { get; set; } /// /// 是否删除标记 /// public bool? IsDelete { get; set; } /// /// 角色ID /// public int? RoleId { get; set; } }