2021-11-21 13:05:36 +08:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2021 勾股工作室
|
2022-09-06 22:09:17 +08:00
|
|
|
* @license https://opensource.org/licenses/GPL-3.0
|
2021-11-21 13:05:36 +08:00
|
|
|
* @link https://www.gougucms.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare (strict_types = 1);
|
|
|
|
|
2022-02-11 13:23:31 +08:00
|
|
|
namespace app\business\controller;
|
2021-11-21 13:05:36 +08:00
|
|
|
|
2021-12-14 00:35:34 +08:00
|
|
|
use app\base\BaseController;
|
2021-11-21 13:05:36 +08:00
|
|
|
use think\facade\Db;
|
|
|
|
use think\facade\View;
|
|
|
|
|
|
|
|
class Analysis extends BaseController
|
|
|
|
{
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
return View();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|