Files
safekat/ci4/app/Entities/Presupuestos/PresupuestoDireccionesEntity.php

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",
];
}