Files
safekat/ci4/app/Entities/Presupuestos/PresupuestoEncuadernacionesEntity.php
2023-12-13 15:33:56 +01:00

26 lines
644 B
PHP
Executable File

<?php
namespace App\Entities\Presupuestos;
use CodeIgniter\Entity;
class PresupuestoEncuadernacionesEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"presupuesto_id" => null,
"tarifa_encuadernado_id" => null,
"precio_unidad" => null,
"precio_total" => null,
"margen" => null,
"created_at" => null,
"updated_at" => null,
];
protected $casts = [
"presupuesto_id" => "int",
"tarifa_encuadernado_id" => "int",
"precio_unidad" => "float",
"precio_total" => "float",
"margen" => "float",
];
}