git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3437 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
32504255a3
commit
326f7f4f54
2 changed files with 62 additions and 1 deletions
|
|
@ -36,6 +36,13 @@ class TravelProgram
|
|||
*/
|
||||
private $programDuration;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*
|
||||
* @ORM\Column(name="slider_info", type="string", length=255, nullable=true)
|
||||
*/
|
||||
private $sliderInfo;
|
||||
|
||||
/**
|
||||
* @var boolean
|
||||
*
|
||||
|
|
@ -435,6 +442,31 @@ class TravelProgram
|
|||
return $this->programDuration;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set sliderInfo
|
||||
*
|
||||
* @param string $sliderInfo
|
||||
*
|
||||
* @return TravelProgram
|
||||
*/
|
||||
public function setSliderInfo($sliderInfo)
|
||||
{
|
||||
$this->sliderInfo = $sliderInfo;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get $liderInfo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getSliderInfo()
|
||||
{
|
||||
return $this->sliderInfo;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set isSeasonal
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue