UserImp.php 603 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Model;
  4. use Hyperf\DbConnection\Model\Model;
  5. /**
  6. */
  7. class UserImp extends Model
  8. {
  9. /**
  10. * The table associated with the model.
  11. */
  12. /**
  13. * The connection name for the model.
  14. *
  15. * @var string
  16. */
  17. protected ?string $connection = 'imp';
  18. protected ?string $table = 'users';
  19. /**
  20. * The attributes that are mass assignable.
  21. */
  22. protected array $fillable = [];
  23. protected array $hidden = [];
  24. /**
  25. * The attributes that should be cast to native types.
  26. */
  27. protected array $casts = [];
  28. }