using MessagePack; using Microsoft.WindowsAzure.Storage.Table; using System; using System.Collections.Generic; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace HiTeachCC.Model.Core.Models { [TableSpace(Name = "Core")] [MessagePackObject(keyAsPropertyName: true)] public class TeamModelUser : TableEntity { /// /// 真实姓名 /// public string FullName { get; set; } /// /// 昵称 /// public string NickName { get; set; } /// /// 性别 /// public int Sex { get; set; } /// /// 邮箱 /// public string Email { get; set; } /// /// 醍摩豆ID /// public string TeamModelId { get; set; } /// /// 头像 /// public string HeadImgUrl { get; set; } /// /// /// public string CountryId { get; set; } /// /// 国家 /// public string Country { get; set; } /// /// /// public string ProvinceId { get; set; } /// /// 省 /// public string Province { get; set; } /// /// 市 /// public string CityId { get; set; } /// /// /// public string City { get; set; } /// /// 区县 /// public string DistrictId { get; set; } /// /// /// public string DistrictName { get; set; } /// /// 注册时间 /// public long RegisterTime { get; set; } public string PhoneCode { get; set; } /// /// 手机号 /// public string Cellphone { get; set; } // 用户标识 public string Language { get; set; } } }