2025-04-21 14:10:27 +08:00

77 lines
2.8 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.Wechat
{
public class WxUserInfoJson
{
//
// 摘要:
// 返回用户关注的渠道来源ADD_SCENE_SEARCH 公众号搜索ADD_SCENE_ACCOUNT_MIGRATION 公众号迁移ADD_SCENE_PROFILE_CARD
// 名片分享ADD_SCENE_QR_CODE 扫描二维码ADD_SCENEPROFILE LINK 图文页内名称点击ADD_SCENE_PROFILE_ITEM
// 图文页右上角菜单ADD_SCENE_PAID 支付后关注ADD_SCENE_OTHERS 其他
public string subscribe_scene { get; set; }
//
// 摘要:
// 用户标签
public int[] tagid_list { get; set; }
//
// 摘要:
// 用户所在的分组ID兼容旧的用户分组接口
public int groupid { get; set; }
//
// 摘要:
// 公众号运营者对粉丝的备注,公众号运营者可在微信公众平台用户管理界面对粉丝添加备注
public string remark { get; set; }
//
// 摘要:
// 只有在用户将公众号绑定到微信开放平台帐号后,才会出现该字段。
public string unionid { get; set; }
//
// 摘要:
// 用户关注时间,为时间戳。如果用户曾多次关注,则取最后关注时间
public long subscribe_time { get; set; }
//
// 摘要:
// 用户头像最后一个数值代表正方形头像大小有0、46、64、96、132数值可选0代表640*640正方形头像用户没有头像时该项为空。若用户更换头像原有头像URL将失效。
public string headimgurl { get; set; }
//
// 摘要:
// 用户所在国家
public string country { get; set; }
//
// 摘要:
// 用户所在省份
public string province { get; set; }
//
// 摘要:
// 用户所在城市
public string city { get; set; }
//
// 摘要:
// 用户的语言简体中文为zh_CN
public string language { get; set; }
//
// 摘要:
// 用户的性别值为1时是男性值为2时是女性值为0时是未知
public int sex { get; set; }
//
// 摘要:
// 用户的昵称
public string nickname { get; set; }
//
// 摘要:
// 用户的标识,对当前公众号唯一
public string openid { get; set; }
//
// 摘要:
// 用户是否订阅该公众号标识值为0时代表此用户没有关注该公众号拉取不到其余信息。
public int subscribe { get; set; }
}
}