namespace YD_XinWei.Commons { /// /// 用户信息 /// public class UserInfoDto { public string SchoolCode { get; set; } public int User_Id { get; set; } public int Role_Id { get; set; } public string RoleName { get; set; } public string UserName { get; set; } public string UserTrueName { get; set; } public string PhoneNo { get; set; } public bool Enable { get; set; } public string Token { get; set; } /// /// 账号关联Id /// public Guid RelevanceId { get; set; } } public class UserModelDataDto { public string PhoneNo { get; set; } public string UserPwd { get; set; } public string UserName { get; set; } public int Gender { get; set; } public string HeadImageUrl { get; set; } public string Address { get; set; } public string Email { get; set; } public string SchoolCode { get; set; } public string RoleName { get; set; } public int RoleId { get; set; } /// /// 账号关联Id /// public Guid RelevanceId { get; set; } } /// /// 关联账号 /// public class RelatedAccountsDto { /// /// 账号 /// public string Key { get; set; } /// /// 密码 /// public string UserPwd { get; set; } /// /// 微信OpenId /// public string OpenId { get; set; } /// /// 角色Id /// public int RoleId { get; set; } /// /// 是否是当前登录 /// public bool IsCurrentLogin { get; set; } = false; } }