mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
36 lines
856 B
PHP
Executable File
36 lines
856 B
PHP
Executable File
<?php
|
|
namespace App\Entities\Presupuestos;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class PresupuestoDireccionesEntity extends \CodeIgniter\Entity\Entity
|
|
{
|
|
protected $attributes = [
|
|
"id" => null,
|
|
"presupuesto_id" => null,
|
|
"cantidad" => null,
|
|
"peso" => null,
|
|
"att" => null,
|
|
"email" => null,
|
|
"direccion" => null,
|
|
"pais_id" => null,
|
|
"ccaa_id" => null,
|
|
"provincia_id" => null,
|
|
"municipio_id" => null,
|
|
"cp" => null,
|
|
"telefono" => null,
|
|
"precio" => null,
|
|
];
|
|
protected $casts = [
|
|
"presupuesto_id" => "int",
|
|
"cantidad" => "int",
|
|
"peso" => "float",
|
|
"pais_id" => "int",
|
|
"ccaa_id" => "int",
|
|
"provincia_id" => "int",
|
|
"municipio_id" => "int",
|
|
"cp" => "int",
|
|
"precio" => "float",
|
|
];
|
|
}
|