mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
datos envio clientes
This commit is contained in:
29
ci4/app/Entities/Clientes/ClienteDireccionesEntity.php
Normal file
29
ci4/app/Entities/Clientes/ClienteDireccionesEntity.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?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",
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user