trabajando en servicios encuadernacion (init)

This commit is contained in:
2023-11-21 20:36:12 +01:00
parent 58af5bf90f
commit 1d0681847a
17 changed files with 174 additions and 18 deletions

View File

@ -0,0 +1,24 @@
<?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",
];
}