RequestUrlLog.php 514 字节
<?php
/**
 * @remark :
 * @name   :RequestUrlLog.php
 * @author :lyh
 * @method :post
 * @time   :2025/2/21 9:55
 */

namespace App\Console\Commands\RequestUrlLog;

use Illuminate\Console\Command;

class RequestUrlLog extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'request_url_log';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = '统计昨日数据';
}