41 lines
769 B
PHP
41 lines
769 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\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'));
|
|
|
|
|
|
}
|
|
} |