34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
namespace YD_AllHeartRates.Commons
|
|
{
|
|
/// <summary>
|
|
/// 用户信息
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
}
|