mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Añadida funcion clientes desde ozar
This commit is contained in:
19
ci4/app/Entities/Configuracion/ProvinciaEntity.php
Normal file
19
ci4/app/Entities/Configuracion/ProvinciaEntity.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
namespace App\Entities\Configuracion;
|
||||
|
||||
use CodeIgniter\Entity;
|
||||
|
||||
class ProvinciaEntity extends \CodeIgniter\Entity\Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
"id" => null,
|
||||
"code" => null,
|
||||
"nombre" => null,
|
||||
"pais_id" => 1,
|
||||
"created_at" => null,
|
||||
"updated_at" => null,
|
||||
];
|
||||
protected $casts = [
|
||||
"pais_id" => "int",
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user