12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * AccessUrlRelCourse
- *
- * @ORM\Table(name="access_url_rel_course")
- * @ORM\Entity
- */
- class AccessUrlRelCourse
- {
- /**
- * @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="access_url_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $accessUrlId;
- /**
- * @var integer
- *
- * @ORM\Column(name="c_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $cId;
- /**
- * Get id
- *
- * @return integer
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set accessUrlId
- *
- * @param integer $accessUrlId
- * @return AccessUrlRelCourse
- */
- public function setAccessUrlId($accessUrlId)
- {
- $this->accessUrlId = $accessUrlId;
- return $this;
- }
- /**
- * Get accessUrlId
- *
- * @return integer
- */
- public function getAccessUrlId()
- {
- return $this->accessUrlId;
- }
- /**
- * Set cId
- *
- * @param integer $cId
- * @return AccessUrlRelCourse
- */
- public function setCId($cId)
- {
- $this->cId = $cId;
- return $this;
- }
- /**
- * Get cId
- *
- * @return integer
- */
- public function getCId()
- {
- return $this->cId;
- }
- }
|