namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// 云平台统一用户输出模型 /// public class WxUnifyUserOutputDto { public long Id { get; set; } /// /// UnionId /// public string UnionId { get; set; } /// /// 用户昵称 /// public string NickName { get; set; } /// /// 用户头像 /// public string AvatarUrl { get; set; } /// /// 手机号 /// public string Phone { get; set; } /// /// 性别 /// public int Gender { get; set; } /// /// 国家 /// public string Country { get; set; } /// /// 省份 /// public string Province { get; set; } /// /// 城市 /// public string City { get; set; } /// /// 语种 /// public string Language { get; set; } } }