123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class TrackEAccess extends \Entity
- {
- /**
- * @return \Entity\Repository\TrackEAccessRepository
- */
- public static function repository(){
- return \Entity\Repository\TrackEAccessRepository::instance();
- }
- /**
- * @return \Entity\TrackEAccess
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $access_id
- */
- protected $access_id;
- /**
- * @var integer $access_user_id
- */
- protected $access_user_id;
- /**
- * @var datetime $access_date
- */
- protected $access_date;
- /**
- * @var string $access_cours_code
- */
- protected $access_cours_code;
- /**
- * @var string $access_tool
- */
- protected $access_tool;
- /**
- * @var integer $access_session_id
- */
- protected $access_session_id;
- /**
- * Get access_id
- *
- * @return integer
- */
- public function get_access_id()
- {
- return $this->access_id;
- }
- /**
- * Set access_user_id
- *
- * @param integer $value
- * @return TrackEAccess
- */
- public function set_access_user_id($value)
- {
- $this->access_user_id = $value;
- return $this;
- }
- /**
- * Get access_user_id
- *
- * @return integer
- */
- public function get_access_user_id()
- {
- return $this->access_user_id;
- }
- /**
- * Set access_date
- *
- * @param datetime $value
- * @return TrackEAccess
- */
- public function set_access_date($value)
- {
- $this->access_date = $value;
- return $this;
- }
- /**
- * Get access_date
- *
- * @return datetime
- */
- public function get_access_date()
- {
- return $this->access_date;
- }
- /**
- * Set access_cours_code
- *
- * @param string $value
- * @return TrackEAccess
- */
- public function set_access_cours_code($value)
- {
- $this->access_cours_code = $value;
- return $this;
- }
- /**
- * Get access_cours_code
- *
- * @return string
- */
- public function get_access_cours_code()
- {
- return $this->access_cours_code;
- }
- /**
- * Set access_tool
- *
- * @param string $value
- * @return TrackEAccess
- */
- public function set_access_tool($value)
- {
- $this->access_tool = $value;
- return $this;
- }
- /**
- * Get access_tool
- *
- * @return string
- */
- public function get_access_tool()
- {
- return $this->access_tool;
- }
- /**
- * Set access_session_id
- *
- * @param integer $value
- * @return TrackEAccess
- */
- public function set_access_session_id($value)
- {
- $this->access_session_id = $value;
- return $this;
- }
- /**
- * Get access_session_id
- *
- * @return integer
- */
- public function get_access_session_id()
- {
- return $this->access_session_id;
- }
- }
|