用户每日活跃检测
This commit is contained in:
23
app/Models/Customer/CustomerLoginHistoryModel.php
Normal file
23
app/Models/Customer/CustomerLoginHistoryModel.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models\Customer;
|
||||
|
||||
use App\Cache\Table\TableCustomerUserCache;
|
||||
use App\Models\Base\CustomerBaseModel;
|
||||
use Illuminate\Database\Eloquent\Casts\Attribute;
|
||||
use Illuminate\Support\Carbon;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
|
||||
class CustomerLoginHistoryModel extends CustomerBaseModel
|
||||
{
|
||||
protected $table = 'customer_login_history';
|
||||
protected $primaryKey = 'id';
|
||||
protected $fillable = [
|
||||
'id',
|
||||
'status',
|
||||
'uid',
|
||||
'device',
|
||||
'created_at',
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user