初始上传

This commit is contained in:
2026-04-04 17:27:12 +08:00
parent 4d80d28eb4
commit b7e11774ee
11191 changed files with 1588469 additions and 0 deletions

43
app/api/controller/Text.php Executable file
View File

@@ -0,0 +1,43 @@
<?php
/**
* Index.php
* Niushop商城系统 - 团队十年电商经验汇集巨献!
* =========================================================
* Copy right 2015-2025 杭州牛之云科技有限公司, 保留所有权利。
* ----------------------------------------------
* 官方网址: https://www.niushop.com
* =========================================================
* @author : niuteam
* @date : 2022.8.8
* @version : v5.0.0.1
*/
namespace app\api\controller;
use app\model\web\Help as HelpModel;
/**
*测试
* @author Administrator
*
*/
class Text extends BaseApi
{
/**
* 基础信息
*/
public function cronVerifyCodeExpire()
{
$order_id = $this->params['order_id'] ?? 0;
if (empty($order_id)) {
return $this->response($this->error('', 'REQUEST_ID'));
}
$res = event('CronVerifyCodeExpire', ['relate_id' => $order_id]);
dd($res);
}
}