ThinkAdmin/app/wechat/model/WechatKeys.php
2025-03-27 23:06:31 +08:00

59 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 $create_by 创建人
* @property int $id
* @property int $news_id 图文ID
* @property int $sort 排序字段
* @property int $status 状态(0禁用,1启用)
* @property string $appid 公众号APPID
* @property string $content 文本内容
* @property string $create_at 创建时间
* @property string $image_url 图片链接
* @property string $keys 关键字
* @property string $music_desc 音乐描述
* @property string $music_image 缩略图片
* @property string $music_title 音乐标题
* @property string $music_url 音乐链接
* @property string $type 类型(text,image,news)
* @property string $video_desc 视频描述
* @property string $video_title 视频标题
* @property string $video_url 视频URL
* @property string $voice_url 语音链接
* @class WechatKeys
* @package app\wechat\model
*/
class WechatKeys extends Model
{
/**
* 格式化创建时间
* @param mixed $value
* @return string
*/
public function getCreateAtAttr($value): string
{
return format_datetime($value);
}
}