using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Operater.DbModel { /// /// /// [SugarTable("user_info")] public class UserInfo { /// /// /// public UserInfo() { } /// /// /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public System.String Id { get; set; } /// /// 账号名 /// [SugarColumn(ColumnName = "user_name")] public System.String UserName { get; set; } /// /// 密码 /// [SugarColumn(ColumnName = "pwd")] public System.String Pwd { get; set; } /// /// 手机号 /// [SugarColumn(ColumnName = "mobile")] public System.String Mobile { get; set; } /// /// 主账号id /// [SugarColumn(ColumnName = "parent_id")] public System.String ParentId { get; set; } /// /// 昵称 /// [SugarColumn(ColumnName = "nick_name")] public System.String NickName { get; set; } /// /// 0 主账号 1子账号 /// [SugarColumn(ColumnName = "user_type")] public System.Int32 UserType { get; set; } /// /// 角色id /// [SugarColumn(ColumnName = "role_id")] public System.String RoleId { get; set; } /// /// 修改时间 /// [SugarColumn(ColumnName = "modify_time")] public System.DateTime ModifyTime { get; set; } } }