123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514 |
- <?php
- use Doctrine\ORM\Mapping as ORM;
- /**
- * EntityCourseRequest
- *
- * @Table(name="course_request")
- * @Entity
- */
- class EntityCourseRequest
- {
- /**
- * @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="code", type="string", length=40, precision=0, scale=0, nullable=false, unique=false)
- */
- private $code;
- /**
- * @var integer
- *
- * @Column(name="user_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $userId;
- /**
- * @var string
- *
- * @Column(name="directory", type="string", length=40, precision=0, scale=0, nullable=true, unique=false)
- */
- private $directory;
- /**
- * @var string
- *
- * @Column(name="db_name", type="string", length=40, precision=0, scale=0, nullable=true, unique=false)
- */
- private $dbName;
- /**
- * @var string
- *
- * @Column(name="course_language", type="string", length=20, precision=0, scale=0, nullable=true, unique=false)
- */
- private $courseLanguage;
- /**
- * @var string
- *
- * @Column(name="title", type="string", length=250, precision=0, scale=0, nullable=true, unique=false)
- */
- private $title;
- /**
- * @var string
- *
- * @Column(name="description", type="text", precision=0, scale=0, nullable=true, unique=false)
- */
- private $description;
- /**
- * @var string
- *
- * @Column(name="category_code", type="string", length=40, precision=0, scale=0, nullable=true, unique=false)
- */
- private $categoryCode;
- /**
- * @var string
- *
- * @Column(name="tutor_name", type="string", length=200, precision=0, scale=0, nullable=true, unique=false)
- */
- private $tutorName;
- /**
- * @var string
- *
- * @Column(name="visual_code", type="string", length=40, precision=0, scale=0, nullable=true, unique=false)
- */
- private $visualCode;
- /**
- * @var \DateTime
- *
- * @Column(name="request_date", type="datetime", precision=0, scale=0, nullable=false, unique=false)
- */
- private $requestDate;
- /**
- * @var string
- *
- * @Column(name="objetives", type="text", precision=0, scale=0, nullable=true, unique=false)
- */
- private $objetives;
- /**
- * @var string
- *
- * @Column(name="target_audience", type="text", precision=0, scale=0, nullable=true, unique=false)
- */
- private $targetAudience;
- /**
- * @var integer
- *
- * @Column(name="status", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $status;
- /**
- * @var integer
- *
- * @Column(name="info", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $info;
- /**
- * @var integer
- *
- * @Column(name="exemplary_content", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $exemplaryContent;
- /**
- * Get id
- *
- * @return integer
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set code
- *
- * @param string $code
- * @return EntityCourseRequest
- */
- public function setCode($code)
- {
- $this->code = $code;
- return $this;
- }
- /**
- * Get code
- *
- * @return string
- */
- public function getCode()
- {
- return $this->code;
- }
- /**
- * Set userId
- *
- * @param integer $userId
- * @return EntityCourseRequest
- */
- public function setUserId($userId)
- {
- $this->userId = $userId;
- return $this;
- }
- /**
- * Get userId
- *
- * @return integer
- */
- public function getUserId()
- {
- return $this->userId;
- }
- /**
- * Set directory
- *
- * @param string $directory
- * @return EntityCourseRequest
- */
- public function setDirectory($directory)
- {
- $this->directory = $directory;
- return $this;
- }
- /**
- * Get directory
- *
- * @return string
- */
- public function getDirectory()
- {
- return $this->directory;
- }
- /**
- * Set dbName
- *
- * @param string $dbName
- * @return EntityCourseRequest
- */
- public function setDbName($dbName)
- {
- $this->dbName = $dbName;
- return $this;
- }
- /**
- * Get dbName
- *
- * @return string
- */
- public function getDbName()
- {
- return $this->dbName;
- }
- /**
- * Set courseLanguage
- *
- * @param string $courseLanguage
- * @return EntityCourseRequest
- */
- public function setCourseLanguage($courseLanguage)
- {
- $this->courseLanguage = $courseLanguage;
- return $this;
- }
- /**
- * Get courseLanguage
- *
- * @return string
- */
- public function getCourseLanguage()
- {
- return $this->courseLanguage;
- }
- /**
- * Set title
- *
- * @param string $title
- * @return EntityCourseRequest
- */
- public function setTitle($title)
- {
- $this->title = $title;
- return $this;
- }
- /**
- * Get title
- *
- * @return string
- */
- public function getTitle()
- {
- return $this->title;
- }
- /**
- * Set description
- *
- * @param string $description
- * @return EntityCourseRequest
- */
- public function setDescription($description)
- {
- $this->description = $description;
- return $this;
- }
- /**
- * Get description
- *
- * @return string
- */
- public function getDescription()
- {
- return $this->description;
- }
- /**
- * Set categoryCode
- *
- * @param string $categoryCode
- * @return EntityCourseRequest
- */
- public function setCategoryCode($categoryCode)
- {
- $this->categoryCode = $categoryCode;
- return $this;
- }
- /**
- * Get categoryCode
- *
- * @return string
- */
- public function getCategoryCode()
- {
- return $this->categoryCode;
- }
- /**
- * Set tutorName
- *
- * @param string $tutorName
- * @return EntityCourseRequest
- */
- public function setTutorName($tutorName)
- {
- $this->tutorName = $tutorName;
- return $this;
- }
- /**
- * Get tutorName
- *
- * @return string
- */
- public function getTutorName()
- {
- return $this->tutorName;
- }
- /**
- * Set visualCode
- *
- * @param string $visualCode
- * @return EntityCourseRequest
- */
- public function setVisualCode($visualCode)
- {
- $this->visualCode = $visualCode;
- return $this;
- }
- /**
- * Get visualCode
- *
- * @return string
- */
- public function getVisualCode()
- {
- return $this->visualCode;
- }
- /**
- * Set requestDate
- *
- * @param \DateTime $requestDate
- * @return EntityCourseRequest
- */
- public function setRequestDate($requestDate)
- {
- $this->requestDate = $requestDate;
- return $this;
- }
- /**
- * Get requestDate
- *
- * @return \DateTime
- */
- public function getRequestDate()
- {
- return $this->requestDate;
- }
- /**
- * Set objetives
- *
- * @param string $objetives
- * @return EntityCourseRequest
- */
- public function setObjetives($objetives)
- {
- $this->objetives = $objetives;
- return $this;
- }
- /**
- * Get objetives
- *
- * @return string
- */
- public function getObjetives()
- {
- return $this->objetives;
- }
- /**
- * Set targetAudience
- *
- * @param string $targetAudience
- * @return EntityCourseRequest
- */
- public function setTargetAudience($targetAudience)
- {
- $this->targetAudience = $targetAudience;
- return $this;
- }
- /**
- * Get targetAudience
- *
- * @return string
- */
- public function getTargetAudience()
- {
- return $this->targetAudience;
- }
- /**
- * Set status
- *
- * @param integer $status
- * @return EntityCourseRequest
- */
- public function setStatus($status)
- {
- $this->status = $status;
- return $this;
- }
- /**
- * Get status
- *
- * @return integer
- */
- public function getStatus()
- {
- return $this->status;
- }
- /**
- * Set info
- *
- * @param integer $info
- * @return EntityCourseRequest
- */
- public function setInfo($info)
- {
- $this->info = $info;
- return $this;
- }
- /**
- * Get info
- *
- * @return integer
- */
- public function getInfo()
- {
- return $this->info;
- }
- /**
- * Set exemplaryContent
- *
- * @param integer $exemplaryContent
- * @return EntityCourseRequest
- */
- public function setExemplaryContent($exemplaryContent)
- {
- $this->exemplaryContent = $exemplaryContent;
- return $this;
- }
- /**
- * Get exemplaryContent
- *
- * @return integer
- */
- public function getExemplaryContent()
- {
- return $this->exemplaryContent;
- }
- }
|