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