namespace YD_AllHeartRates.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; } } 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; } } }