mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
trabajando en presupuestos servicios extra
This commit is contained in:
23
ci4/app/Entities/Presupuestos/PresupuestoServiciosExtraEntity.php
Executable file
23
ci4/app/Entities/Presupuestos/PresupuestoServiciosExtraEntity.php
Executable 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",
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user