Files
safekat/ci4/app/Entities/Tarifas/TarifaAcabadoLinea.php
2023-06-12 18:35:42 +02:00

34 lines
847 B
PHP

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