mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
30 lines
676 B
PHP
30 lines
676 B
PHP
<?php
|
|
namespace App\Entities\Cliente;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class ClienteDireccionesEntity extends \CodeIgniter\Entity\Entity
|
|
{
|
|
protected $attributes = [
|
|
"id" => null,
|
|
"cliente_id" => null,
|
|
"att" => null,
|
|
"email" => null,
|
|
"direccion" => null,
|
|
"pais_id" => null,
|
|
"ccaa_id" => null,
|
|
"provincia_id" => null,
|
|
"municipio_id" => null,
|
|
"cp" => null,
|
|
"telefono" => null,
|
|
];
|
|
protected $casts = [
|
|
"cliente_id" => "int",
|
|
"pais_id" => "int",
|
|
"ccaa_id" => "int",
|
|
"provincia_id" => "int",
|
|
"municipio_id" => "int",
|
|
"cp" => "int",
|
|
];
|
|
}
|