mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
terminada envio lineas
This commit is contained in:
23
ci4/app/Entities/Logistica/EnvioLineaEntity.php
Normal file
23
ci4/app/Entities/Logistica/EnvioLineaEntity.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entities\Logistica;
|
||||
|
||||
use CodeIgniter\Entity\Entity;
|
||||
|
||||
class EnvioLineaEntity extends Entity
|
||||
{
|
||||
protected $casts = [
|
||||
'id' => 'int',
|
||||
'envio_id' => 'int',
|
||||
'pedido_id' => 'int',
|
||||
'presupuesto_id' => 'int',
|
||||
'unidades_envio' => 'int',
|
||||
'unidades_total' => 'int',
|
||||
'cajas' => 'int',
|
||||
'unidades_cajas' => 'int',
|
||||
'created_by' => 'int',
|
||||
'updated_by' => 'int',
|
||||
'created_at' => 'datetime',
|
||||
'updated_at' => 'datetime',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user