新增微信公众号错误

This commit is contained in:
JaguarJack
2020-06-21 13:23:22 +08:00
parent dc08715bc7
commit c624dc1777
5 changed files with 246 additions and 2 deletions

View File

@@ -0,0 +1,27 @@
<?php
/**
* @filename Users.php
* @createdAt 2020/6/21
* @project https://github.com/yanwenwu/catch-admin
* @document http://doc.catchadmin.com
* @author JaguarJack <njphper@gmail.com>
* @copyright By CatchAdmin
* @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
*/
namespace catchAdmin\wechat\repository;
use catchAdmin\wechat\model\WechatUsers;
use catcher\base\CatchRepository;
class WechatUsersRepository extends CatchRepository
{
public function __construct(WechatUsers $users)
{
}
protected function model()
{
}
}