xxxrrrdddd 2 年之前
父節點
當前提交
acda57f30a
共有 2 個文件被更改,包括 27 次插入0 次删除
  1. 26 0
      application/admin/command/TestCommand.php
  2. 1 0
      application/command.php

+ 26 - 0
application/admin/command/TestCommand.php

@@ -0,0 +1,26 @@
+<?php
+
+namespace app\admin\command;
+
+use datamodel\Users;
+use logicmodel\ChainLogic;
+use think\console\Command;
+use think\console\Input;
+use think\console\Output;
+
+class TestCommand extends Command
+{
+    protected function configure()
+    {
+        $this->setName('make:test');
+    }
+
+    protected function execute(Input $input, Output $output)
+    {
+        $users=Users::where('is_auth',1)
+            ->where('create_time','>','2022-05-23 12:00:00')
+            ->where('is_del',0)
+            ->count();
+        $output->info($users);
+    }
+}

+ 1 - 0
application/command.php

@@ -19,4 +19,5 @@ return [
     'app\admin\command\Addon',
     \app\admin\command\CreateUserAddress::class,
     \app\admin\command\CreateGoodsHash::class,
+    \app\admin\command\TestCommand::class,
 ];