Files
safekat/ci4/app/Entities/Tarifas/TarifaEncuadernacionDimensionesEntity.php

25 lines
543 B
PHP
Executable File

<?php
namespace App\Entities\Tarifas;
use CodeIgniter\Entity;
class TarifaEncuadernacionDimensionesEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"keyword" => "",
"descripcion" => "",
"ancho_min" => 0,
"ancho_max" => 0,
"alto_min" => 0,
"alto_max" => 0,
];
protected $casts = [
"id" => "int",
"ancho_min" => "float",
"ancho_max" => "float",
"alto_min" => "float",
"alto_max" => "float",
];
}