123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class TrackEOnline extends \Entity
- {
- /**
- * @return \Entity\Repository\TrackEOnlineRepository
- */
- public static function repository(){
- return \Entity\Repository\TrackEOnlineRepository::instance();
- }
- /**
- * @return \Entity\TrackEOnline
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $login_id
- */
- protected $login_id;
- /**
- * @var integer $login_user_id
- */
- protected $login_user_id;
- /**
- * @var datetime $login_date
- */
- protected $login_date;
- /**
- * @var string $login_ip
- */
- protected $login_ip;
- /**
- * @var string $course
- */
- protected $course;
- /**
- * @var integer $session_id
- */
- protected $session_id;
- /**
- * @var integer $access_url_id
- */
- protected $access_url_id;
- /**
- * Get login_id
- *
- * @return integer
- */
- public function get_login_id()
- {
- return $this->login_id;
- }
- /**
- * Set login_user_id
- *
- * @param integer $value
- * @return TrackEOnline
- */
- public function set_login_user_id($value)
- {
- $this->login_user_id = $value;
- return $this;
- }
- /**
- * Get login_user_id
- *
- * @return integer
- */
- public function get_login_user_id()
- {
- return $this->login_user_id;
- }
- /**
- * Set login_date
- *
- * @param datetime $value
- * @return TrackEOnline
- */
- public function set_login_date($value)
- {
- $this->login_date = $value;
- return $this;
- }
- /**
- * Get login_date
- *
- * @return datetime
- */
- public function get_login_date()
- {
- return $this->login_date;
- }
- /**
- * Set login_ip
- *
- * @param string $value
- * @return TrackEOnline
- */
- public function set_login_ip($value)
- {
- $this->login_ip = $value;
- return $this;
- }
- /**
- * Get login_ip
- *
- * @return string
- */
- public function get_login_ip()
- {
- return $this->login_ip;
- }
- /**
- * Set course
- *
- * @param string $value
- * @return TrackEOnline
- */
- public function set_course($value)
- {
- $this->course = $value;
- return $this;
- }
- /**
- * Get course
- *
- * @return string
- */
- public function get_course()
- {
- return $this->course;
- }
- /**
- * Set session_id
- *
- * @param integer $value
- * @return TrackEOnline
- */
- public function set_session_id($value)
- {
- $this->session_id = $value;
- return $this;
- }
- /**
- * Get session_id
- *
- * @return integer
- */
- public function get_session_id()
- {
- return $this->session_id;
- }
- /**
- * Set access_url_id
- *
- * @param integer $value
- * @return TrackEOnline
- */
- public function set_access_url_id($value)
- {
- $this->access_url_id = $value;
- return $this;
- }
- /**
- * Get access_url_id
- *
- * @return integer
- */
- public function get_access_url_id()
- {
- return $this->access_url_id;
- }
- }
|