1234567891011121314151617181920 |
- <?php
- namespace app\common\command;
- use app\service\EsMobileService;
- use app\service\mobile_get\Gdian;
- use think\console\Command;
- use think\console\Input;
- use think\console\Output;
- class TestCommand extends Command{
- protected function configure()
- {
- $this->setName('test')->setDescription('test');
- }
- protected function execute(Input $input, Output $output)
- {
- // dd((new Gdian())->getAmount('13565898741'));
- }
- }
|