ThinkAdmin/app/wechat/model/WechatFans.php

52 lines
2.0 KiB
PHP
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.

<?php
// +----------------------------------------------------------------------
// | Wechat Plugin for ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2025 Anyon <zoujingli@qq.com>
// +----------------------------------------------------------------------
// | 官方网站: https://thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// | 免责声明 ( https://thinkadmin.top/disclaimer )
// +----------------------------------------------------------------------
// | gitee 代码仓库https://gitee.com/zoujingli/think-plugs-wechat
// | github 代码仓库https://github.com/zoujingli/think-plugs-wechat
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\wechat\model;
use think\admin\Model;
/**
* 微信粉丝用户模型
*
* @property int $id
* @property int $is_black 是否为黑名单状态
* @property int $sex 用户性别(1男性,2女性,0未知)
* @property int $subscribe 关注状态(0未关注,1已关注)
* @property int $subscribe_time 关注时间
* @property string $appid 公众号APPID
* @property string $city 用户所在城市
* @property string $country 用户所在国家
* @property string $create_at 创建时间
* @property string $headimgurl 用户头像
* @property string $language 用户的语言(zh_CN)
* @property string $nickname 用户昵称
* @property string $openid 粉丝openid
* @property string $province 用户所在省份
* @property string $qr_scene 二维码场景值
* @property string $qr_scene_str 二维码场景内容
* @property string $remark 备注
* @property string $subscribe_at 关注时间
* @property string $subscribe_scene 扫码关注场景
* @property string $tagid_list 粉丝标签id
* @property string $unionid 粉丝unionid
* @class WechatFans
* @package app\wechat\model
*/
class WechatFans extends Model
{
}