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/main/inc/Entity/EntityCSurveyGroup.php

169 lines
2.8 KiB

<?php
use Doctrine\ORM\Mapping as ORM;
/**
* EntityCSurveyGroup
*
* @Table(name="c_survey_group")
* @Entity
*/
class EntityCSurveyGroup
{
/**
* @var integer
*
* @Column(name="c_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
* @Id
* @GeneratedValue(strategy="NONE")
*/
private $cId;
/**
* @var integer
*
* @Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
* @Id
* @GeneratedValue(strategy="NONE")
*/
private $id;
/**
* @var string
*
* @Column(name="name", type="string", length=20, precision=0, scale=0, nullable=false, unique=false)
*/
private $name;
/**
* @var string
*
* @Column(name="description", type="string", length=255, precision=0, scale=0, nullable=false, unique=false)
*/
private $description;
/**
* @var integer
*
* @Column(name="survey_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
*/
private $surveyId;
/**
* Set cId
*
* @param integer $cId
* @return EntityCSurveyGroup
*/
public function setCId($cId)
{
$this->cId = $cId;
return $this;
}
/**
* Get cId
*
* @return integer
*/
public function getCId()
{
return $this->cId;
}
/**
* Set id
*
* @param integer $id
* @return EntityCSurveyGroup
*/
public function setId($id)
{
$this->id = $id;
return $this;
}
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set name
*
* @param string $name
* @return EntityCSurveyGroup
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Get name
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Set description
*
* @param string $description
* @return EntityCSurveyGroup
*/
public function setDescription($description)
{
$this->description = $description;
return $this;
}
/**
* Get description
*
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* Set surveyId
*
* @param integer $surveyId
* @return EntityCSurveyGroup
*/
public function setSurveyId($surveyId)
{
$this->surveyId = $surveyId;
return $this;
}
/**
* Get surveyId
*
* @return integer
*/
public function getSurveyId()
{
return $this->surveyId;
}
}