Files
shop-platform/src/app/event/wechat/WeappShareData.php
2025-10-29 15:32:26 +08:00

28 lines
297 B
PHP

<?php
/**
*/
namespace app\event\wechat;
use app\model\share\WeappShare as ShareModel;
/**
* 获取分享数据
*/
class WeappShareData
{
public function handle($param)
{
$share_model = new ShareModel();
return $share_model->getShareData($param);
}
}