Files
safekat/ci4/app/Entities/Presupuestos/PresupuestoFicheroEntity.php
2025-04-21 12:55:45 +02:00

20 lines
412 B
PHP
Executable File

<?php
namespace App\Entities\Presupuestos;
use CodeIgniter\Entity;
class PresupuestoFicheroEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"presupuesto_id" => null,
"nombre" => null,
"file_path" => null,
"upload_by" => null,
"upload_at" => null,
];
protected $casts = [
"presupuesto_id" => "int",
];
}