mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
29 lines
578 B
PHP
29 lines
578 B
PHP
<?php
|
|
|
|
namespace App\Entities\Mensajeria;
|
|
|
|
use CodeIgniter\Entity\Entity;
|
|
|
|
class ConversacionEntity extends Entity
|
|
{
|
|
protected $attributes = [
|
|
'id' => null,
|
|
'pedido_libro_id' => null,
|
|
'pedido_maquetacion_id' => null,
|
|
'factura_id' => null,
|
|
'departamento' => null,
|
|
'asunto' => null,
|
|
'created_at' => null,
|
|
'updated_at' => null,
|
|
'deleted_at' => null,
|
|
];
|
|
|
|
protected $casts = [
|
|
"pedido_libro_id" => "?int",
|
|
"pedido_maquetacion_id" => "?int",
|
|
"factura_id" => "?int"
|
|
];
|
|
|
|
|
|
}
|