Files
safekat/ci4/app/Entities/Presupuestos/PresupuestoAcabadosEntity.php
2024-02-21 21:58:58 +01:00

30 lines
750 B
PHP
Executable File

<?php
namespace App\Entities\Presupuestos;
use CodeIgniter\Entity;
class PresupuestoAcabadosEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"presupuesto_id" => null,
"tarifa_acabado_id" => null,
"precio_unidad" => null,
"precio_total" => null,
"margen" => null,
"cubierta" => null,
"sobrecubierta" => null,
"created_at" => null,
"updated_at" => null,
];
protected $casts = [
"presupuesto_id" => "int",
"tarifa_acabado_id" => "int",
"precio_unidad" => "float",
"precio_total" => "float",
"margen" => "float",
"cubierta" => "int",
"sobrecubierta" => "int",
];
}