Files

33 lines
555 B
PHP
Raw Permalink Normal View History

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\model\wechat;
use crmeb\basic\BaseModel;
use crmeb\traits\ModelTrait;
/**
* Class WechatMedia
* @package app\model\wechat
*/
class WechatMedia extends BaseModel
{
use ModelTrait;
/**
* 主键
* @var string
*/
protected $pk = 'id';
/**
* 表名
* @var string
*/
protected $name = 'wechat_media';
}