Files
safekat/ci4/app/Entities/Presupuestos/PresupuestoAcabadosEntity.php

32 lines
815 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,
"proveedor_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",
"proveedor_id" => "int",
"precio_unidad" => "float",
"precio_total" => "float",
"margen" => "float",
"cubierta" => "int",
"sobrecubierta" => "int",
];
}