Files
backend/app/Model/AppNewsColumn.php
toom1996 24590b05c0 update
2025-07-18 15:30:20 +08:00

31 lines
515 B
PHP

<?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'];
}