UserLoginLog.php 433 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\common\model;
  3. use library\tools\Data;
  4. use think\Model;
  5. // 登录记录
  6. class UserLoginLog extends Model
  7. {
  8. public static function creatLog($user_id,$type,$facility,$account = '',$token = '')
  9. {
  10. static::create([
  11. 'user_id' => $user_id,
  12. 'type' => $type,
  13. 'facility' => $facility,
  14. 'account' => $account,
  15. 'token' => $token,
  16. ]);
  17. }
  18. }