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 WeChatUser : TableEntity
{///
/// 真实姓名
///
public string fullName { get; set; }
///
/// 昵称
///
public string nickName { get; set; }
///
/// 性别
///
public int gender { get; set; }
///
/// unionId
///
public string unionId { get; set; }
///
/// 头像
///
public string avatarUrl { 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 long registerTime { get; set; }
public string phoneCode { get; set; }
///
/// 手机号
///
public string cellphone { get; set; }
// 用户标识
public string openId { get; set; }
public string language { get; set; }
public string appid { get; set; }
}
}