mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
25 lines
543 B
PHP
Executable File
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",
|
|
];
|
|
}
|