26 lines
524 B
PHP
26 lines
524 B
PHP
<?php
|
|
/**
|
|
* GenerateDatabaseDict.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-11-11 09:00:25
|
|
* @modified 2022-11-11 09:00:25
|
|
*/
|
|
|
|
namespace Beike\Console\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
class GenerateDatabaseDict extends Command
|
|
{
|
|
protected $signature = 'make:dict';
|
|
protected $description = '生成数据字典 Markdown 文档';
|
|
|
|
public function handle()
|
|
{
|
|
|
|
}
|
|
}
|