Files
safekat/ci4/app/Entities/Tarifas/TarifaEncuadernacionLinea.php
2024-12-24 18:55:07 +01:00

44 lines
1.1 KiB
PHP
Executable File

<?php
namespace App\Entities\Tarifas;
use CodeIgniter\Entity\Entity;
class TarifaEncuadernacionLinea extends Entity
{
protected $attributes = [
"id" => null,
"tirada_encuadernacion_id" => 0,
"paginas_libro_min" => 0,
"paginas_libro_max" => 0,
"dimensiones_id" => 0,
"precio_min" => 0,
"precio_max" => 0,
"tirada_min" => 0,
"tirada_max" => 0,
"total_min" => 0,
"margen" => 0,
"user_created_id" => 0,
"user_updated_id" => 0,
"is_deleted" => 0,
"created_at" => null,
"updated_at" => null,
];
protected $casts = [
"tirada_encuadernacion_id" => "int",
"dimensiones_id" => "int",
"paginas_libro_min" => "float",
"paginas_libro_max" => "float",
"precio_min" => "float",
"precio_max" => "float",
"tirada_min" => "float",
"tirada_max" => "float",
"total_min" => "float",
"margen" => "float",
"user_created_id" => "int",
"user_updated_id" => "int",
"is_deleted" => "int",
];
}