21 lines
329 B
PHP
21 lines
329 B
PHP
<?php
|
|
/**
|
|
* This service file is part of item.
|
|
*
|
|
* @author ctexthuang
|
|
* @contact ctexthuang@qq.com
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service\Admin\Catering\Meal;
|
|
|
|
use App\Service\Admin\Catering\CateringBaseService;
|
|
|
|
class CateringService extends CateringBaseService
|
|
{
|
|
public function handle()
|
|
{
|
|
|
|
}
|
|
} |