Añadida funcion clientes desde ozar

This commit is contained in:
imnavajas
2023-07-12 12:35:31 +02:00
parent 42a20b93b0
commit 90d63432d6
49 changed files with 3119 additions and 970 deletions

View File

@ -0,0 +1,15 @@
<?php
namespace App\Entities\Configuracion;
use CodeIgniter\Entity;
class FormaPagoEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"nombre" => null,
"created_at" => null,
"updated_at" => null,
];
protected $casts = [];
}