Chamilo is a learning management system focused on ease of use and accessibility
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.
 
 
 
 
 
 
chamilo-lms/src/Chamilo/CoreBundle/Entity/SequenceCondition.php

166 lines
2.7 KiB

<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Class SequenceCondition
*
* @ORM\Table(name="sequence_condition")
* @ORM\Entity
*/
class SequenceCondition
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue()
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="description", type="text", nullable=false)
*/
private $description;
/**
* @var string
*
* @ORM\Column(name="mat_op", type="string")
*/
private $mathOperation;
/**
* @var string
*
* @ORM\Column(name="param", type="float")
*/
private $param;
/**
* @var string
*
* @ORM\Column(name="act_true", type="integer")
*/
private $actTrue;
/**
* @var string
*
* @ORM\Column(name="act_false", type="string")
*/
private $actFalse;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* @param string $description
* @return SequenceCondition
*/
public function setDescription($description)
{
$this->description = $description;
return $this;
}
/**
* @return string
*/
public function getMathOperation()
{
return $this->mathOperation;
}
/**
* @param string $mathOperation
* @return SequenceCondition
*/
public function setMathOperation($mathOperation)
{
$this->mathOperation = $mathOperation;
return $this;
}
/**
* @return string
*/
public function getParam()
{
return $this->param;
}
/**
* @param string $param
* @return SequenceCondition
*/
public function setParam($param)
{
$this->param = $param;
return $this;
}
/**
* @return string
*/
public function getActTrue()
{
return $this->actTrue;
}
/**
* @param string $actTrue
* @return SequenceCondition
*/
public function setActTrue($actTrue)
{
$this->actTrue = $actTrue;
return $this;
}
/**
* @return string
*/
public function getActFalse()
{
return $this->actFalse;
}
/**
* @param string $actFalse
* @return SequenceCondition
*/
public function setActFalse($actFalse)
{
$this->actFalse = $actFalse;
return $this;
}
}