tarifa maquinas

This commit is contained in:
amazuecos
2024-12-18 09:30:21 +01:00
parent 43f2daea59
commit 41b4ec5cd3
20 changed files with 864 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<?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",
];
}