| 12345678910111213141516171819202122232425262728293031 |
- <?php
- declare(strict_types=1);
- namespace App\Model;
- use Hyperf\DbConnection\Model\Model;
- /**
- */
- class Level extends Model
- {
- public bool $timestamps = true;
- /**
- * The table associated with the model.
- */
- protected ?string $table = 'level';
- /**
- * The attributes that are mass assignable.
- */
- // protected array $fillable = [];
- /**
- * The attributes that should be cast to native types.
- */
- protected array $casts = [];
- protected array $guarded = [];
- }
|