27 lines
684 B
PHP
27 lines
684 B
PHP
<?php
|
||
namespace App\Cache\Table\Wallet;
|
||
|
||
use App\Cache\Base\TableBaseCache;
|
||
use App\Models\Wallet\Other\WalletSettingModel;
|
||
use App\Models\Wallet\Platform\WalletPlatformModel;
|
||
|
||
//用户缓存用户基础信息(结构自己组装不完全等于数据表)uid为主键
|
||
class TableWalletPlatformCache extends TableBaseCache
|
||
{
|
||
|
||
public string $table_class = WalletPlatformModel::class;
|
||
public string $primary_prefix = 'TableWalletPlatformCache:'; //后面跟name
|
||
|
||
public string $primary_key_column = 'id';
|
||
public array $get_columns = [
|
||
'id',
|
||
'name',
|
||
'code',
|
||
'appid',
|
||
'secret',
|
||
'notify_ip',
|
||
'created_at',
|
||
];
|
||
|
||
}
|