12345678910111213141516171819 |
- <?php
- namespace app\common\command;
- use app\service\EsMobileService;
- use think\console\Command;
- use think\console\Input;
- use think\console\Output;
- class EsMapCommand extends Command{
- protected function configure()
- {
- $this->setName('es:map')->setDescription('test');
- }
- protected function execute(Input $input, Output $output)
- {
- EsMobileService::mapping();
- }
- }
|