| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace App\Module\Transaction\Commands;
- use App\Module\System\Services\ConfigService;
- use App\Module\Test\Services\TestService;
- use Illuminate\Console\Command;
- /**
- * RechargeStatus50To202Command
- * 状态 50 -202
- *
- * @example php a
- *
- */
- class RechargeStatus50To202Command extends Command
- {
- /**
- *
- * @var string
- */
- protected $signature = 'transaction:status50to202';
- /**
- * 命令描述
- *
- * @var string
- */
- protected $description = '充值单,未补充tx的过一段时间自动结束';
- /**
- * 执行命令
- */
- public function handle()
- {
- $s = ConfigService::getValueDefault('recharge_status50_to202','3600');
- dump($s);
- return self::SUCCESS;
- }
- }
|