This commit is contained in:
toom1996
2025-07-18 15:30:20 +08:00
parent 7d619fb503
commit 24590b05c0

View File

@ -0,0 +1,30 @@
<?php
declare(strict_types=1);
namespace App\Model;
/**
* @property int $id
* @property string $name
* @property string $url
*/
class AppNewsColumn extends Model
{
/**
* The table associated with the model.
*/
protected ?string $table = 'app_news_column';
/**
* The attributes that are mass assignable.
*/
protected array $fillable = [];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['id' => 'integer'];
}