feat: 本次提交更新内容如下

数据同步
This commit is contained in:
笔记本里的永平
2025-07-07 14:10:31 +08:00
parent 86c261ba70
commit 5b8969f4a6
63 changed files with 8916 additions and 39 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace {%namespace%};
use think\console\Command;
use think\console\Input;
use think\console\Output;
class {%className%} extends Command
{
protected function configure()
{
// 指令配置
$this->setName('{%commandName%}');
// 设置参数
}
protected function execute(Input $input, Output $output)
{
// 指令输出
$output->writeln('{%commandName%}');
}
}