1234567891011121314151617181920 |
- <?php
- namespace app\common\model;
- use library\tools\Data;
- use think\Model;
- // 登录记录
- class UserLoginLog extends Model
- {
- public static function creatLog($user_id,$type,$facility,$account = '',$token = '')
- {
- static::create([
- 'user_id' => $user_id,
- 'type' => $type,
- 'facility' => $facility,
- 'account' => $account,
- 'token' => $token,
- ]);
- }
- }
|