mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Añadidos ubicaciones y series de facturas
This commit is contained in:
16
ci4/app/Entities/Configuracion/UbicacionesEntity.php
Normal file
16
ci4/app/Entities/Configuracion/UbicacionesEntity.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
namespace App\Entities\Configuracion;
|
||||
|
||||
use CodeIgniter\Entity;
|
||||
|
||||
class UbicacionesEntity extends \CodeIgniter\Entity\Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
'id' => null,
|
||||
'nombre' => null,
|
||||
'deleted_at' => null, // default value
|
||||
];
|
||||
protected $casts = [
|
||||
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user