mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
33 lines
754 B
PHP
33 lines
754 B
PHP
<?php
|
|
namespace App\Entities\compras;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class ProveedorEntity extends \CodeIgniter\Entity\Entity
|
|
{
|
|
protected $attributes = [
|
|
"id" => null,
|
|
"nombre" => null,
|
|
"tipo_id" => null,
|
|
"razon_social" => null,
|
|
"cif" => null,
|
|
"direccion" => null,
|
|
"cp" => null,
|
|
"ciudad" => null,
|
|
"provincia_id" => null,
|
|
"pais_id" => 1,
|
|
"persona_contacto" => null,
|
|
"email" => null,
|
|
"telefono" => null,
|
|
"is_deleted" => 0,
|
|
"created_at" => null,
|
|
"updated_at" => null,
|
|
];
|
|
protected $casts = [
|
|
"tipo_id" => "?int",
|
|
"provincia_id" => "int",
|
|
"pais_id" => "int",
|
|
"is_deleted" => "int",
|
|
];
|
|
}
|