mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
tarifa maquinas
This commit is contained in:
20
ci4/app/Entities/Configuracion/TareaMaquinaEntity.php
Normal file
20
ci4/app/Entities/Configuracion/TareaMaquinaEntity.php
Normal 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",
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user