feat: 数据迁移命令

This commit is contained in:
2025-04-11 18:15:12 +08:00
parent eebf4596ba
commit b7566f54eb
7 changed files with 447 additions and 4 deletions

View File

@@ -0,0 +1,26 @@
<?php
declare (strict_types = 1);
namespace app\index\controller;
use think\facade\View;
class Article extends Common
{
/**
* 文件列表
*/
public function index()
{
return View::fetch('index');
}
/**
* 文章详情
*/
public function detail()
{
}
}