This commit is contained in:
2025-03-25 13:47:17 +08:00
parent 81042c384c
commit f40c0ef6e7
18 changed files with 377 additions and 32 deletions

View File

@@ -0,0 +1,26 @@
<?php
/*
* description
* authorwh
* email
* createTime{2025/3/24} {17:23}
*/
namespace app\index\controller;
use think\Controller;
use wanghua\general_utility_tools_php\Mmodel;
//定时任务
class Tasktimer extends Controller
{
//按分钟执行
function runMinutes(){
Mmodel::catchJson(function (){
});
}
}