23 lines
549 B
PHP
23 lines
549 B
PHP
<?php
|
||
namespace App\Cache\Table;
|
||
|
||
use App\Cache\Base\TableBaseCache;
|
||
use App\Models\Customer\CustomerUserModel;
|
||
|
||
//用户缓存用户基础信息(结构自己组装不完全等于数据表)uid为主键
|
||
class TableCustomerUserCache extends TableBaseCache
|
||
{
|
||
|
||
public string $table_class = CustomerUserModel::class;
|
||
public string $primary_prefix = 'TableCustomerUserCache:'; //后面跟uid
|
||
|
||
public string $primary_key_column = 'id';
|
||
public array $get_exclude_columns = [
|
||
'password',
|
||
'google_auth_secret',
|
||
];
|
||
|
||
|
||
|
||
}
|