123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424 |
- <?php
- use Doctrine\ORM\Mapping as ORM;
- /**
- * EntityGradebookCategory
- *
- * @Table(name="gradebook_category")
- * @Entity
- */
- class EntityGradebookCategory
- {
- /**
- * @var integer
- *
- * @Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- * @Id
- * @GeneratedValue(strategy="IDENTITY")
- */
- private $id;
- /**
- * @var string
- *
- * @Column(name="name", type="text", precision=0, scale=0, nullable=false, unique=false)
- */
- private $name;
- /**
- * @var string
- *
- * @Column(name="description", type="text", precision=0, scale=0, nullable=true, unique=false)
- */
- private $description;
- /**
- * @var integer
- *
- * @Column(name="user_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $userId;
- /**
- * @var string
- *
- * @Column(name="course_code", type="string", length=40, precision=0, scale=0, nullable=true, unique=false)
- */
- private $courseCode;
- /**
- * @var integer
- *
- * @Column(name="parent_id", type="integer", precision=0, scale=0, nullable=true, unique=false)
- */
- private $parentId;
- /**
- * @var float
- *
- * @Column(name="weight", type="float", precision=0, scale=0, nullable=false, unique=false)
- */
- private $weight;
- /**
- * @var boolean
- *
- * @Column(name="visible", type="boolean", precision=0, scale=0, nullable=false, unique=false)
- */
- private $visible;
- /**
- * @var integer
- *
- * @Column(name="certif_min_score", type="integer", precision=0, scale=0, nullable=true, unique=false)
- */
- private $certifMinScore;
- /**
- * @var integer
- *
- * @Column(name="session_id", type="integer", precision=0, scale=0, nullable=true, unique=false)
- */
- private $sessionId;
- /**
- * @var integer
- *
- * @Column(name="document_id", type="integer", precision=0, scale=0, nullable=true, unique=false)
- */
- private $documentId;
- /**
- * @var integer
- *
- * @Column(name="locked", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $locked;
- /**
- * @var boolean
- *
- * @Column(name="default_lowest_eval_exclude", type="boolean", precision=0, scale=0, nullable=true, unique=false)
- */
- private $defaultLowestEvalExclude;
- /**
- * @var integer
- *
- * @Column(name="grade_model_id", type="integer", precision=0, scale=0, nullable=true, unique=false)
- */
- private $gradeModelId;
- /**
- * Get id
- *
- * @return integer
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set name
- *
- * @param string $name
- * @return EntityGradebookCategory
- */
- 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 EntityGradebookCategory
- */
- public function setDescription($description)
- {
- $this->description = $description;
- return $this;
- }
- /**
- * Get description
- *
- * @return string
- */
- public function getDescription()
- {
- return $this->description;
- }
- /**
- * Set userId
- *
- * @param integer $userId
- * @return EntityGradebookCategory
- */
- public function setUserId($userId)
- {
- $this->userId = $userId;
- return $this;
- }
- /**
- * Get userId
- *
- * @return integer
- */
- public function getUserId()
- {
- return $this->userId;
- }
- /**
- * Set courseCode
- *
- * @param string $courseCode
- * @return EntityGradebookCategory
- */
- public function setCourseCode($courseCode)
- {
- $this->courseCode = $courseCode;
- return $this;
- }
- /**
- * Get courseCode
- *
- * @return string
- */
- public function getCourseCode()
- {
- return $this->courseCode;
- }
- /**
- * Set parentId
- *
- * @param integer $parentId
- * @return EntityGradebookCategory
- */
- public function setParentId($parentId)
- {
- $this->parentId = $parentId;
- return $this;
- }
- /**
- * Get parentId
- *
- * @return integer
- */
- public function getParentId()
- {
- return $this->parentId;
- }
- /**
- * Set weight
- *
- * @param float $weight
- * @return EntityGradebookCategory
- */
- public function setWeight($weight)
- {
- $this->weight = $weight;
- return $this;
- }
- /**
- * Get weight
- *
- * @return float
- */
- public function getWeight()
- {
- return $this->weight;
- }
- /**
- * Set visible
- *
- * @param boolean $visible
- * @return EntityGradebookCategory
- */
- public function setVisible($visible)
- {
- $this->visible = $visible;
- return $this;
- }
- /**
- * Get visible
- *
- * @return boolean
- */
- public function getVisible()
- {
- return $this->visible;
- }
- /**
- * Set certifMinScore
- *
- * @param integer $certifMinScore
- * @return EntityGradebookCategory
- */
- public function setCertifMinScore($certifMinScore)
- {
- $this->certifMinScore = $certifMinScore;
- return $this;
- }
- /**
- * Get certifMinScore
- *
- * @return integer
- */
- public function getCertifMinScore()
- {
- return $this->certifMinScore;
- }
- /**
- * Set sessionId
- *
- * @param integer $sessionId
- * @return EntityGradebookCategory
- */
- public function setSessionId($sessionId)
- {
- $this->sessionId = $sessionId;
- return $this;
- }
- /**
- * Get sessionId
- *
- * @return integer
- */
- public function getSessionId()
- {
- return $this->sessionId;
- }
- /**
- * Set documentId
- *
- * @param integer $documentId
- * @return EntityGradebookCategory
- */
- public function setDocumentId($documentId)
- {
- $this->documentId = $documentId;
- return $this;
- }
- /**
- * Get documentId
- *
- * @return integer
- */
- public function getDocumentId()
- {
- return $this->documentId;
- }
- /**
- * Set locked
- *
- * @param integer $locked
- * @return EntityGradebookCategory
- */
- public function setLocked($locked)
- {
- $this->locked = $locked;
- return $this;
- }
- /**
- * Get locked
- *
- * @return integer
- */
- public function getLocked()
- {
- return $this->locked;
- }
- /**
- * Set defaultLowestEvalExclude
- *
- * @param boolean $defaultLowestEvalExclude
- * @return EntityGradebookCategory
- */
- public function setDefaultLowestEvalExclude($defaultLowestEvalExclude)
- {
- $this->defaultLowestEvalExclude = $defaultLowestEvalExclude;
- return $this;
- }
- /**
- * Get defaultLowestEvalExclude
- *
- * @return boolean
- */
- public function getDefaultLowestEvalExclude()
- {
- return $this->defaultLowestEvalExclude;
- }
- /**
- * Set gradeModelId
- *
- * @param integer $gradeModelId
- * @return EntityGradebookCategory
- */
- public function setGradeModelId($gradeModelId)
- {
- $this->gradeModelId = $gradeModelId;
- return $this;
- }
- /**
- * Get gradeModelId
- *
- * @return integer
- */
- public function getGradeModelId()
- {
- return $this->gradeModelId;
- }
- }
|