微信回复功能

This commit is contained in:
JaguarJack
2020-06-29 19:51:44 +08:00
parent 09c409fc76
commit 08fb8b3397
5 changed files with 161 additions and 0 deletions

View File

@@ -8,3 +8,27 @@
// +----------------------------------------------------------------------
// | Author: JaguarJack [ njphper@gmail.com ]
// +----------------------------------------------------------------------
namespace catchAdmin\wechat\repository;
use catchAdmin\wechat\model\WechatReply;
use catcher\base\CatchRepository;
class WechatReplyRepository extends CatchRepository
{
protected $reply;
public function __construct(WechatReply $reply)
{
$this->reply = $reply;
}
public function model()
{
return $this->reply;
}
public function storeBy(array $data)
{
return parent::storeBy($data); // TODO: Change the autogenerated stub
}
}