35 lines
1.0 KiB
C#
Raw Permalink Normal View History

2025-06-17 13:50:37 +08:00
namespace YD_AllHeartRates.Commons
{
/// <summary>
/// 用户信息
/// </summary>
public class UserInfoDto
{
public string SchoolCode { get; set; }
2025-07-02 14:00:45 +08:00
public string SchoolName{ get; set; }
2025-06-17 13:50:37 +08:00
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; }
}
}