allocatr/application/worker/controller/Abnormal.php
2025-04-20 09:37:25 +08:00

17 lines
291 B
PHP

<?php
namespace app\worker\controller;
use app\common\controller\WorkerApi;
class Abnormal extends WorkerApi
{
protected $noNeedLogin = [];
public function index()
{
$res = $this->getAbnormalService()->findAll();
$this->success('操作成功', $res);
}
}