last changes since 6-2023
This commit is contained in:
parent
81e42b76f5
commit
148eb359ce
20 changed files with 27107 additions and 371 deletions
|
|
@ -266,6 +266,13 @@ class TravelBooking
|
|||
*/
|
||||
private $insurances;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*
|
||||
* @ORM\Column(name="insurance_offer", type="string", length=255, nullable=true)
|
||||
*/
|
||||
private $insuranceOffer;
|
||||
|
||||
/**
|
||||
* @var integer
|
||||
*
|
||||
|
|
@ -1285,6 +1292,30 @@ class TravelBooking
|
|||
return $ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set insuranceOffer
|
||||
*
|
||||
* @param string $insuranceOffer
|
||||
*
|
||||
* @return TravelBooking
|
||||
*/
|
||||
public function setInsuranceOffer($insuranceOffer)
|
||||
{
|
||||
$this->insuranceOffer = $insuranceOffer;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get insuranceOffer
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getInsuranceOffer()
|
||||
{
|
||||
return $this->insuranceOffer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set travelCancellation
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue