using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity.RequestMod.phone
{
public class RequestUserInfo: ResLoginBaseModel
{
///
/// 头像
///
public string headUrl
{
get;set;
}
///
/// 昵称
///
public string uname
{
get;set;
}
///
/// 用户标识
///
public string uid
{
get;set;
}
///
/// 性别 1:男、2:女
///
public int sex
{
get;set;
}
///
/// 所在地区
///
public string location
{
get;set;
}
///
/// 经度
///
public double longitude
{
get;set;
}
///
/// 纬度
///
public double latitude
{
get;set;
}
///
/// 来自平台
///
public int fromPlatforms
{
get;set;
}
///
/// 生日
///
public DateTime? birthday
{
get; set;
}
///
/// 高度
///
public int? height
{
get; set;
}
///
/// 体重
///
public int? weight
{
get; set;
}
///
/// 用户总里程
///
public int? range
{
get; set;
}
}
}