mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
13 lines
257 B
PHP
Executable File
13 lines
257 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Entities\Produccion;
|
|
|
|
use CodeIgniter\Entity\Entity;
|
|
|
|
class OrdenTrabajoMaquetacionEntity extends Entity
|
|
{
|
|
protected $datamap = [];
|
|
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
|
|
protected $casts = [];
|
|
}
|