You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
184 lines
3.3 KiB
184 lines
3.3 KiB
<?php
|
|
|
|
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* SessionFieldOptions
|
|
*
|
|
* @ORM\Table(name="session_field_options")
|
|
* @ORM\Entity
|
|
*/
|
|
class SessionFieldOptions
|
|
{
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @ORM\Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue(strategy="IDENTITY")
|
|
*/
|
|
private $id;
|
|
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @ORM\Column(name="field_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
|
|
*/
|
|
private $fieldId;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="option_value", type="text", precision=0, scale=0, nullable=true, unique=false)
|
|
*/
|
|
private $optionValue;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="option_display_text", type="string", length=255, precision=0, scale=0, nullable=true, unique=false)
|
|
*/
|
|
private $optionDisplayText;
|
|
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @ORM\Column(name="option_order", type="integer", precision=0, scale=0, nullable=true, unique=false)
|
|
*/
|
|
private $optionOrder;
|
|
|
|
/**
|
|
* @var \DateTime
|
|
*
|
|
* @ORM\Column(name="tms", type="datetime", precision=0, scale=0, nullable=false, unique=false)
|
|
*/
|
|
private $tms;
|
|
|
|
|
|
/**
|
|
* Get id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* Set fieldId
|
|
*
|
|
* @param integer $fieldId
|
|
* @return SessionFieldOptions
|
|
*/
|
|
public function setFieldId($fieldId)
|
|
{
|
|
$this->fieldId = $fieldId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get fieldId
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function getFieldId()
|
|
{
|
|
return $this->fieldId;
|
|
}
|
|
|
|
/**
|
|
* Set optionValue
|
|
*
|
|
* @param string $optionValue
|
|
* @return SessionFieldOptions
|
|
*/
|
|
public function setOptionValue($optionValue)
|
|
{
|
|
$this->optionValue = $optionValue;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get optionValue
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getOptionValue()
|
|
{
|
|
return $this->optionValue;
|
|
}
|
|
|
|
/**
|
|
* Set optionDisplayText
|
|
*
|
|
* @param string $optionDisplayText
|
|
* @return SessionFieldOptions
|
|
*/
|
|
public function setOptionDisplayText($optionDisplayText)
|
|
{
|
|
$this->optionDisplayText = $optionDisplayText;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get optionDisplayText
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getOptionDisplayText()
|
|
{
|
|
return $this->optionDisplayText;
|
|
}
|
|
|
|
/**
|
|
* Set optionOrder
|
|
*
|
|
* @param integer $optionOrder
|
|
* @return SessionFieldOptions
|
|
*/
|
|
public function setOptionOrder($optionOrder)
|
|
{
|
|
$this->optionOrder = $optionOrder;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get optionOrder
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function getOptionOrder()
|
|
{
|
|
return $this->optionOrder;
|
|
}
|
|
|
|
/**
|
|
* Set tms
|
|
*
|
|
* @param \DateTime $tms
|
|
* @return SessionFieldOptions
|
|
*/
|
|
public function setTms($tms)
|
|
{
|
|
$this->tms = $tms;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get tms
|
|
*
|
|
* @return \DateTime
|
|
*/
|
|
public function getTms()
|
|
{
|
|
return $this->tms;
|
|
}
|
|
}
|
|
|