mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
24 lines
559 B
PHP
Executable File
24 lines
559 B
PHP
Executable File
<?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",
|
|
];
|
|
}
|