listo para añadir tarifas

This commit is contained in:
2023-11-23 22:20:38 +01:00
parent ec2f217c79
commit f89dc2e566
2320 changed files with 124 additions and 15 deletions

View File

@ -0,0 +1,17 @@
<?php
namespace App\Entities\Configuracion;
use CodeIgniter\Entity;
class ConfiguracionSistemaEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"var_name" => null,
"value" => null,
"datatype" => null,
];
protected $casts = [
];
}