Files
hyperf_service/app/Service/ServiceTrait/Common/CycleTrait.php
2025-01-14 17:36:32 +08:00

22 lines
293 B
PHP

<?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()
{
}
}