UserToken.php 529 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Model;
  4. use Hyperf\DbConnection\Model\Model;
  5. /**
  6. */
  7. class UserToken extends Model
  8. {
  9. /**
  10. * The table associated with the model.
  11. */
  12. protected ?string $table = 'user_token';
  13. /**
  14. * The attributes that are mass assignable.
  15. */
  16. protected array $fillable = [
  17. 'user_id', // 添加 user_id 到 fillable 属性
  18. 'token',
  19. ];
  20. /**
  21. * The attributes that should be cast to native types.
  22. */
  23. protected array $casts = [];
  24. }