You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
178 lines
3.0 KiB
178 lines
3.0 KiB
<?php
|
|
|
|
namespace Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
*
|
|
* @license see /license.txt
|
|
* @author autogenerated
|
|
*/
|
|
class TrackELinks extends \Entity
|
|
{
|
|
/**
|
|
* @return \Entity\Repository\TrackELinksRepository
|
|
*/
|
|
public static function repository(){
|
|
return \Entity\Repository\TrackELinksRepository::instance();
|
|
}
|
|
|
|
/**
|
|
* @return \Entity\TrackELinks
|
|
*/
|
|
public static function create(){
|
|
return new self();
|
|
}
|
|
|
|
/**
|
|
* @var integer $links_id
|
|
*/
|
|
protected $links_id;
|
|
|
|
/**
|
|
* @var integer $links_user_id
|
|
*/
|
|
protected $links_user_id;
|
|
|
|
/**
|
|
* @var datetime $links_date
|
|
*/
|
|
protected $links_date;
|
|
|
|
/**
|
|
* @var string $links_cours_id
|
|
*/
|
|
protected $links_cours_id;
|
|
|
|
/**
|
|
* @var integer $links_link_id
|
|
*/
|
|
protected $links_link_id;
|
|
|
|
/**
|
|
* @var integer $links_session_id
|
|
*/
|
|
protected $links_session_id;
|
|
|
|
|
|
/**
|
|
* Get links_id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_links_id()
|
|
{
|
|
return $this->links_id;
|
|
}
|
|
|
|
/**
|
|
* Set links_user_id
|
|
*
|
|
* @param integer $value
|
|
* @return TrackELinks
|
|
*/
|
|
public function set_links_user_id($value)
|
|
{
|
|
$this->links_user_id = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get links_user_id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_links_user_id()
|
|
{
|
|
return $this->links_user_id;
|
|
}
|
|
|
|
/**
|
|
* Set links_date
|
|
*
|
|
* @param datetime $value
|
|
* @return TrackELinks
|
|
*/
|
|
public function set_links_date($value)
|
|
{
|
|
$this->links_date = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get links_date
|
|
*
|
|
* @return datetime
|
|
*/
|
|
public function get_links_date()
|
|
{
|
|
return $this->links_date;
|
|
}
|
|
|
|
/**
|
|
* Set links_cours_id
|
|
*
|
|
* @param string $value
|
|
* @return TrackELinks
|
|
*/
|
|
public function set_links_cours_id($value)
|
|
{
|
|
$this->links_cours_id = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get links_cours_id
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_links_cours_id()
|
|
{
|
|
return $this->links_cours_id;
|
|
}
|
|
|
|
/**
|
|
* Set links_link_id
|
|
*
|
|
* @param integer $value
|
|
* @return TrackELinks
|
|
*/
|
|
public function set_links_link_id($value)
|
|
{
|
|
$this->links_link_id = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get links_link_id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_links_link_id()
|
|
{
|
|
return $this->links_link_id;
|
|
}
|
|
|
|
/**
|
|
* Set links_session_id
|
|
*
|
|
* @param integer $value
|
|
* @return TrackELinks
|
|
*/
|
|
public function set_links_session_id($value)
|
|
{
|
|
$this->links_session_id = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get links_session_id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_links_session_id()
|
|
{
|
|
return $this->links_session_id;
|
|
}
|
|
} |