change servicio cliente to maquina tareas

This commit is contained in:
amazuecos
2025-01-18 09:49:00 +01:00
parent c5440ad76e
commit 84accc8e03
23 changed files with 412 additions and 395 deletions

View File

@ -1,20 +0,0 @@
<?php
namespace App\Entities\Tarifas\Maquinas;
use CodeIgniter\Entity\Entity;
class TareaMaquinaEntity extends Entity
{
protected $attributes = [
"id" => null,
"name" => null,
"description" => null,
];
protected $casts = [
"id" => "integer",
"name" => "string",
"description" => "?string",
];
}