trabajando en presupuestos servicios extra

This commit is contained in:
jaimejimenezortega
2024-04-07 21:32:38 +02:00
parent 8eb322aaae
commit 987da56f2a
14 changed files with 5777 additions and 5 deletions

View File

@ -0,0 +1,23 @@
<?php
namespace App\Entities\Presupuestos;
use CodeIgniter\Entity;
class PresupuestoServiciosExtraEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"presupuesto_id" => null,
"tarifa_extra_id" => null,
"precio_total" => null,
"margen" => null,
"created_at" => null,
"updated_at" => null,
];
protected $casts = [
"presupuesto_id" => "int",
"tarifa_extra_id" => "int",
"precio_total" => "float",
"margen" => "float",
];
}