diff --git a/src/Core/Model/Despatch/Shipment.php b/src/Core/Model/Despatch/Shipment.php index 9e39cbf..9cb709a 100644 --- a/src/Core/Model/Despatch/Shipment.php +++ b/src/Core/Model/Despatch/Shipment.php @@ -85,6 +85,12 @@ class Shipment * @var DateTime */ private $fecTraslado; + /** + * Fecha de entrega de bienes al transportista. + * + * @var DateTime + */ + private $fecEntregaBienes; /** * Numero de Contenedor (Motivo Importación). * @@ -352,6 +358,26 @@ public function setFecTraslado(?DateTime $fecTraslado): Shipment return $this; } + /** + * @return DateTime + */ + public function getFecEntregaBienes(): ?DateTime + { + return $this->fecEntregaBienes; + } + + /** + * @param DateTime $fecEntregaBienes + * + * @return Shipment + */ + public function setFecEntregaBienes(?DateTime $fecEntregaBienes): Shipment + { + $this->fecEntregaBienes = $fecEntregaBienes; + + return $this; + } + /** * @return string */