mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Inicio servicios para presupuestos
This commit is contained in:
26
ci4/app/Entities/Presupuestos/PresupuestoAcabadosEntity.php
Normal file
26
ci4/app/Entities/Presupuestos/PresupuestoAcabadosEntity.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?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,
|
||||
"nombre" => null,
|
||||
"precio" => null,
|
||||
"precio_unidad" => null,
|
||||
"tirada" => null,
|
||||
"created_at" => null,
|
||||
"updated_at" => null,
|
||||
];
|
||||
protected $casts = [
|
||||
"presupuesto_id" => "int",
|
||||
"tarifa_acabado_id" => "int",
|
||||
"precio" => "float",
|
||||
"precio_unidad" => "float",
|
||||
"tirada" => "int",
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user