datos envio clientes

This commit is contained in:
Jaime Jiménez
2023-12-15 14:02:35 +01:00
parent d4f92263bf
commit d4246ca99b
15 changed files with 421 additions and 603 deletions

View File

@ -0,0 +1,35 @@
<?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",
];
}