17 lines
258 B
PHP
17 lines
258 B
PHP
<?php
|
|
|
|
namespace App\Domains\Real\Commands\Sync;
|
|
|
|
use Carbon\Carbon;
|
|
|
|
class OrderBaseSync extends Command
|
|
{
|
|
protected $signature = 'sync:order-base';
|
|
|
|
protected $description = '同步RD基础订单数据';
|
|
|
|
public function handle()
|
|
{
|
|
}
|
|
}
|