更新命名问题

This commit is contained in:
2025-06-25 11:52:01 +08:00
parent 9f374011ae
commit 6b78ee29cf
57 changed files with 3295 additions and 1288 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
/**
* @copyright Copyright (c) 2023-2024 美天智能科技
* @author 李志强
* @link http://www.meteteme.com
*/
declare(strict_types=1);
namespace app\applications\controller;
use app\base\BaseController;
use app\model\Application as ApplicationList;
use app\applications\validate\ApplicationCheck;
use think\exception\ValidateException;
use think\facade\Db;
use think\facade\View;
class Nav extends BaseController
{
public function index(){
return view();
}
}