namespace learun.wechat { /// /// 版 本 EasyCode EC管理后台 /// Copyright (c) 2019-present EC管理有限公司 /// 创建人:tobin /// 日 期:2019.11.06 /// 描 述:用户信息获取返回结果 /// public class OpenUserGetResult : OperationResultsBase { /// /// 普通用户的标识,对当前开发者帐号唯一 /// /// public string openid { get; set; } /// /// 普通用户昵称 /// /// public string nickname { get; set; } /// /// 普通用户性别,1为男性,2为女性 /// /// public string sex { get; set; } /// /// 省份 /// /// public string province { get; set; } /// /// 城市 /// /// public string city { get; set; } /// /// 国家 /// /// public string country { get; set; } /// /// 头像URL /// /// public string headimgurl { get; set; } /// /// 用户统一标识。针对一个微信开放平台帐号下的应用,同一用户的unionid是唯一的 /// /// public string unionid { get; set; } } }