feat : catering
This commit is contained in:
28
app/Cache/Redis/Admin/DriverCache.php
Normal file
28
app/Cache/Redis/Admin/DriverCache.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Cache\Redis\Admin;
|
||||
|
||||
use App\Cache\Redis\RedisCache;
|
||||
use App\Model\DriverSequence;
|
||||
use Hyperf\Di\Annotation\Inject;
|
||||
|
||||
class DriverCache
|
||||
{
|
||||
/**
|
||||
* 注入 redis 方法
|
||||
* @var RedisCache $redis
|
||||
*/
|
||||
#[Inject]
|
||||
protected RedisCache $redis;
|
||||
|
||||
/**
|
||||
* @var DriverSequence
|
||||
*/
|
||||
#[Inject]
|
||||
protected DriverSequence $driverSequenceModel;
|
||||
|
||||
public function getDriverData()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user