work/application/common/command/ProjectReport.php
vilson a97c74717f 项目燃尽图
Signed-off-by: vilson <545522390@qq.com>
2020-02-20 22:45:37 +08:00

22 lines
439 B
PHP

<?php
namespace app\common\command;
use think\console\Command;
use think\console\Input;
use think\console\Output;
class ProjectReport extends Command
{
protected function configure()
{
$this->setName('ProjectReport');
}
protected function execute(Input $input, Output $output)
{
\app\common\Model\ProjectReport::setDayilyProejctReport();
$output->writeln('success_at ' . nowTime());
}
}