|
@@ -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);
|
|
|
+ }
|
|
|
+}
|