12345678910111213141516171819202122 |
- <?php
- declare(strict_types=1);
- namespace App\Model;
- use Hyperf\DbConnection\Model\Model;
- /**
- */
- class WhiteWord extends Model
- {
- /**
- * The table associated with the model.
- */
- protected ?string $table = 'white_word';
- /**
- * The attributes that should be cast to native types.
- */
- protected array $casts = [];
- }
|