123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- <?php
- use Doctrine\ORM\Mapping as ORM;
- /**
- * EntityCAttendance
- *
- * @Table(name="c_attendance")
- * @Entity
- */
- class EntityCAttendance
- {
- /**
- * @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="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 boolean
- *
- * @Column(name="active", type="boolean", precision=0, scale=0, nullable=false, unique=false)
- */
- private $active;
- /**
- * @var string
- *
- * @Column(name="attendance_qualify_title", type="string", length=255, precision=0, scale=0, nullable=true, unique=false)
- */
- private $attendanceQualifyTitle;
- /**
- * @var integer
- *
- * @Column(name="attendance_qualify_max", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $attendanceQualifyMax;
- /**
- * @var float
- *
- * @Column(name="attendance_weight", type="float", precision=0, scale=0, nullable=false, unique=false)
- */
- private $attendanceWeight;
- /**
- * @var integer
- *
- * @Column(name="session_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $sessionId;
- /**
- * @var integer
- *
- * @Column(name="locked", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $locked;
- /**
- * Set cId
- *
- * @param integer $cId
- * @return EntityCAttendance
- */
- 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 EntityCAttendance
- */
- 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 EntityCAttendance
- */
- 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 EntityCAttendance
- */
- public function setDescription($description)
- {
- $this->description = $description;
- return $this;
- }
- /**
- * Get description
- *
- * @return string
- */
- public function getDescription()
- {
- return $this->description;
- }
- /**
- * Set active
- *
- * @param boolean $active
- * @return EntityCAttendance
- */
- public function setActive($active)
- {
- $this->active = $active;
- return $this;
- }
- /**
- * Get active
- *
- * @return boolean
- */
- public function getActive()
- {
- return $this->active;
- }
- /**
- * Set attendanceQualifyTitle
- *
- * @param string $attendanceQualifyTitle
- * @return EntityCAttendance
- */
- public function setAttendanceQualifyTitle($attendanceQualifyTitle)
- {
- $this->attendanceQualifyTitle = $attendanceQualifyTitle;
- return $this;
- }
- /**
- * Get attendanceQualifyTitle
- *
- * @return string
- */
- public function getAttendanceQualifyTitle()
- {
- return $this->attendanceQualifyTitle;
- }
- /**
- * Set attendanceQualifyMax
- *
- * @param integer $attendanceQualifyMax
- * @return EntityCAttendance
- */
- public function setAttendanceQualifyMax($attendanceQualifyMax)
- {
- $this->attendanceQualifyMax = $attendanceQualifyMax;
- return $this;
- }
- /**
- * Get attendanceQualifyMax
- *
- * @return integer
- */
- public function getAttendanceQualifyMax()
- {
- return $this->attendanceQualifyMax;
- }
- /**
- * Set attendanceWeight
- *
- * @param float $attendanceWeight
- * @return EntityCAttendance
- */
- public function setAttendanceWeight($attendanceWeight)
- {
- $this->attendanceWeight = $attendanceWeight;
- return $this;
- }
- /**
- * Get attendanceWeight
- *
- * @return float
- */
- public function getAttendanceWeight()
- {
- return $this->attendanceWeight;
- }
- /**
- * Set sessionId
- *
- * @param integer $sessionId
- * @return EntityCAttendance
- */
- public function setSessionId($sessionId)
- {
- $this->sessionId = $sessionId;
- return $this;
- }
- /**
- * Get sessionId
- *
- * @return integer
- */
- public function getSessionId()
- {
- return $this->sessionId;
- }
- /**
- * Set locked
- *
- * @param integer $locked
- * @return EntityCAttendance
- */
- public function setLocked($locked)
- {
- $this->locked = $locked;
- return $this;
- }
- /**
- * Get locked
- *
- * @return integer
- */
- public function getLocked()
- {
- return $this->locked;
- }
- }
|