mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
trabajando en servicios encuadernacion (init)
This commit is contained in:
@ -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",
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user