mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
terminadas respuesta. falta repasar todo y cabecera datatable y permisos menus y botones
This commit is contained in:
20
ci4/app/Entities/Soporte/TicketRespuestaEntity.php
Normal file
20
ci4/app/Entities/Soporte/TicketRespuestaEntity.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entities\Soporte;
|
||||
|
||||
use CodeIgniter\Entity\Entity;
|
||||
|
||||
class TicketRespuestaEntity extends Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
'id' => null,
|
||||
'ticket_id' => null,
|
||||
'usuario_id' => null,
|
||||
'mensaje' => null,
|
||||
'created_at' => null,
|
||||
'updated_at' => null,
|
||||
];
|
||||
|
||||
protected $dates = ['created_at', 'updated_at'];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user