You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
503 B

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