WhiteWord.php 349 B

12345678910111213141516171819202122
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Model;
  4. use Hyperf\DbConnection\Model\Model;
  5. /**
  6. */
  7. class WhiteWord extends Model
  8. {
  9. /**
  10. * The table associated with the model.
  11. */
  12. protected ?string $table = 'white_word';
  13. /**
  14. * The attributes that should be cast to native types.
  15. */
  16. protected array $casts = [];
  17. }