feat : catering

This commit is contained in:
2025-03-14 10:05:12 +08:00
parent 3aa241350c
commit 747e37fc86
11 changed files with 210 additions and 18 deletions

View File

@@ -0,0 +1,41 @@
<?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\Model\OrderMealCateringLog;
use App\Service\Admin\Catering\CateringBaseService;
use Hyperf\Di\Annotation\Inject;
class CheckService extends CateringBaseService
{
public function handle()
{
//todo Write logic
}
/**
* @var OrderMealCateringLog
*/
#[Inject]
protected OrderMealCateringLog $orderMealCateringLog;
/**
* @var OrderMealCateringLog
*/
protected OrderMealCateringLog $logInfo;
public function info()
{
$this->logInfo = $this->orderMealCateringLog->find($this->request->input('id'));
}
}