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.
151 lines
2.4 KiB
151 lines
2.4 KiB
13 years ago
|
<?php
|
||
|
|
||
|
namespace Entity;
|
||
|
|
||
|
use Doctrine\ORM\Mapping as ORM;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @license see /license.txt
|
||
|
* @author autogenerated
|
||
|
*/
|
||
|
class TrackEOpen extends \Entity
|
||
|
{
|
||
|
/**
|
||
|
* @return \Entity\Repository\TrackEOpenRepository
|
||
|
*/
|
||
|
public static function repository(){
|
||
|
return \Entity\Repository\TrackEOpenRepository::instance();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return \Entity\TrackEOpen
|
||
|
*/
|
||
|
public static function create(){
|
||
|
return new self();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @var integer $open_id
|
||
|
*/
|
||
|
protected $open_id;
|
||
|
|
||
|
/**
|
||
|
* @var text $open_remote_host
|
||
|
*/
|
||
|
protected $open_remote_host;
|
||
|
|
||
|
/**
|
||
|
* @var text $open_agent
|
||
|
*/
|
||
|
protected $open_agent;
|
||
|
|
||
|
/**
|
||
|
* @var text $open_referer
|
||
|
*/
|
||
|
protected $open_referer;
|
||
|
|
||
|
/**
|
||
|
* @var datetime $open_date
|
||
|
*/
|
||
|
protected $open_date;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Get open_id
|
||
|
*
|
||
|
* @return integer
|
||
|
*/
|
||
|
public function get_open_id()
|
||
|
{
|
||
|
return $this->open_id;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set open_remote_host
|
||
|
*
|
||
|
* @param text $value
|
||
|
* @return TrackEOpen
|
||
|
*/
|
||
|
public function set_open_remote_host($value)
|
||
|
{
|
||
|
$this->open_remote_host = $value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get open_remote_host
|
||
|
*
|
||
|
* @return text
|
||
|
*/
|
||
|
public function get_open_remote_host()
|
||
|
{
|
||
|
return $this->open_remote_host;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set open_agent
|
||
|
*
|
||
|
* @param text $value
|
||
|
* @return TrackEOpen
|
||
|
*/
|
||
|
public function set_open_agent($value)
|
||
|
{
|
||
|
$this->open_agent = $value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get open_agent
|
||
|
*
|
||
|
* @return text
|
||
|
*/
|
||
|
public function get_open_agent()
|
||
|
{
|
||
|
return $this->open_agent;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set open_referer
|
||
|
*
|
||
|
* @param text $value
|
||
|
* @return TrackEOpen
|
||
|
*/
|
||
|
public function set_open_referer($value)
|
||
|
{
|
||
|
$this->open_referer = $value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get open_referer
|
||
|
*
|
||
|
* @return text
|
||
|
*/
|
||
|
public function get_open_referer()
|
||
|
{
|
||
|
return $this->open_referer;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set open_date
|
||
|
*
|
||
|
* @param datetime $value
|
||
|
* @return TrackEOpen
|
||
|
*/
|
||
|
public function set_open_date($value)
|
||
|
{
|
||
|
$this->open_date = $value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get open_date
|
||
|
*
|
||
|
* @return datetime
|
||
|
*/
|
||
|
public function get_open_date()
|
||
|
{
|
||
|
return $this->open_date;
|
||
|
}
|
||
|
}
|