namespace langguanApi.Model.Dto.SystemConfiguration
{
///
/// 用于用户管理的Dto
///
public class UserDto
{
///
/// 用户名
///
public string Username { get; set; }
///
/// 角色id
///
public int roleId { get; set; }
///
/// 邮箱
///
public string Email { get; set; }
///
/// 学历
///
public string Education { get; set; }
///
/// 手机号
///
public int Tel { get; set; }
///
/// 性别 0表示男 1表示女
///
public byte Sex { get; set; }
///
/// 毕业院校
///
public string University { get; set; }
///
/// 出生日期
///
public string Brithday { get; set; }
///
/// 籍贯
///
public string Native { get; set; }
///
/// 居住地
///
public string Address { get; set; }
///
/// 是否管理员 0否 1是
///
public byte IsAdmin { get; set; }
///
/// 是否删除 0否 1是
///
public byte IsDel { get; set; }
}
}