初始化代码

This commit is contained in:
2025-08-11 10:22:05 +08:00
commit ebd8d85201
4206 changed files with 753018 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace app\api\wxapi\wxmsg;
use app\api\wxapi\Base;
use app\api\wxapi\wxmsg\Reply;
/* 点击菜单拉取消息时的事件推送
* */
class EventClick extends Base{
public $BaseObject;
public function run(){
$this->send();
}
//回复消息
public function send(){
$Reply=new Reply();
$Reply->BaseObject=$this->BaseObject;
$Reply->run();
}
}