feat: chef

This commit is contained in:
2025-01-14 17:36:32 +08:00
parent 63a3ad6d30
commit 789f753b24
4 changed files with 65 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace App\Service\ServiceTrait\Common;
use App\Cache\Redis\Common\CycleCache;
use Hyperf\Di\Annotation\Inject;
trait CycleTrait
{
/**
* @var CycleCache
*/
#[Inject]
protected CycleCache $cycleCache;
protected function initTodayCycleId()
{
}
}