parent
28ea16582a
commit
8aee516d68
@ -0,0 +1,214 @@ |
||||
<?php |
||||
|
||||
namespace Entity; |
||||
|
||||
use Doctrine\ORM\Mapping as ORM; |
||||
|
||||
/** |
||||
* AccessUrl |
||||
* |
||||
* @ORM\Table(name="access_url") |
||||
* @ORM\Entity |
||||
*/ |
||||
class AccessUrl |
||||
{ |
||||
/** |
||||
* @var integer |
||||
* |
||||
* @ORM\Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false) |
||||
* @ORM\Id |
||||
* @ORM\GeneratedValue(strategy="IDENTITY") |
||||
*/ |
||||
private $id; |
||||
|
||||
/** |
||||
* @var string |
||||
* |
||||
* @ORM\Column(name="url", type="string", length=255, precision=0, scale=0, nullable=false, unique=false) |
||||
*/ |
||||
private $url; |
||||
|
||||
/** |
||||
* @var string |
||||
* |
||||
* @ORM\Column(name="description", type="text", precision=0, scale=0, nullable=true, unique=false) |
||||
*/ |
||||
private $description; |
||||
|
||||
/** |
||||
* @var integer |
||||
* |
||||
* @ORM\Column(name="active", type="integer", precision=0, scale=0, nullable=false, unique=false) |
||||
*/ |
||||
private $active; |
||||
|
||||
/** |
||||
* @var integer |
||||
* |
||||
* @ORM\Column(name="created_by", type="integer", precision=0, scale=0, nullable=false, unique=false) |
||||
*/ |
||||
private $createdBy; |
||||
|
||||
/** |
||||
* @var \DateTime |
||||
* |
||||
* @ORM\Column(name="tms", type="datetime", precision=0, scale=0, nullable=false, unique=false) |
||||
*/ |
||||
private $tms; |
||||
|
||||
/** |
||||
* @var boolean |
||||
* |
||||
* @ORM\Column(name="url_type", type="boolean", precision=0, scale=0, nullable=true, unique=false) |
||||
*/ |
||||
private $urlType; |
||||
|
||||
|
||||
/** |
||||
* Get id |
||||
* |
||||
* @return integer |
||||
*/ |
||||
public function getId() |
||||
{ |
||||
return $this->id; |
||||
} |
||||
|
||||
/** |
||||
* Set url |
||||
* |
||||
* @param string $url |
||||
* @return AccessUrl |
||||
*/ |
||||
public function setUrl($url) |
||||
{ |
||||
$this->url = $url; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get url |
||||
* |
||||
* @return string |
||||
*/ |
||||
public function getUrl() |
||||
{ |
||||
return $this->url; |
||||
} |
||||
|
||||
/** |
||||
* Set description |
||||
* |
||||
* @param string $description |
||||
* @return AccessUrl |
||||
*/ |
||||
public function setDescription($description) |
||||
{ |
||||
$this->description = $description; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get description |
||||
* |
||||
* @return string |
||||
*/ |
||||
public function getDescription() |
||||
{ |
||||
return $this->description; |
||||
} |
||||
|
||||
/** |
||||
* Set active |
||||
* |
||||
* @param integer $active |
||||
* @return AccessUrl |
||||
*/ |
||||
public function setActive($active) |
||||
{ |
||||
$this->active = $active; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get active |
||||
* |
||||
* @return integer |
||||
*/ |
||||
public function getActive() |
||||
{ |
||||
return $this->active; |
||||
} |
||||
|
||||
/** |
||||
* Set createdBy |
||||
* |
||||
* @param integer $createdBy |
||||
* @return AccessUrl |
||||
*/ |
||||
public function setCreatedBy($createdBy) |
||||
{ |
||||
$this->createdBy = $createdBy; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get createdBy |
||||
* |
||||
* @return integer |
||||
*/ |
||||
public function getCreatedBy() |
||||
{ |
||||
return $this->createdBy; |
||||
} |
||||
|
||||
/** |
||||
* Set tms |
||||
* |
||||
* @param \DateTime $tms |
||||
* @return AccessUrl |
||||
*/ |
||||
public function setTms($tms) |
||||
{ |
||||
$this->tms = $tms; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get tms |
||||
* |
||||
* @return \DateTime |
||||
*/ |
||||
public function getTms() |
||||
{ |
||||
return $this->tms; |
||||
} |
||||
|
||||
/** |
||||
* Set urlType |
||||
* |
||||
* @param boolean $urlType |
||||
* @return AccessUrl |
||||
*/ |
||||
public function setUrlType($urlType) |
||||
{ |
||||
$this->urlType = $urlType; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get urlType |
||||
* |
||||
* @return boolean |
||||
*/ |
||||
public function getUrlType() |
||||
{ |
||||
return $this->urlType; |
||||
} |
||||
} |
@ -0,0 +1,94 @@ |
||||
<?php |
||||
|
||||
namespace Entity; |
||||
|
||||
use Doctrine\ORM\Mapping as ORM; |
||||
|
||||
/** |
||||
* AccessUrlRelCourse |
||||
* |
||||
* @ORM\Table(name="access_url_rel_course") |
||||
* @ORM\Entity |
||||
*/ |
||||
class AccessUrlRelCourse |
||||
{ |
||||
/** |
||||
* @var integer |
||||
* |
||||
* @ORM\Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false) |
||||
* @ORM\Id |
||||
* @ORM\GeneratedValue(strategy="IDENTITY") |
||||
*/ |
||||
private $id; |
||||
|
||||
/** |
||||
* @var integer |
||||
* |
||||
* @ORM\Column(name="access_url_id", type="integer", precision=0, scale=0, nullable=false, unique=false) |
||||
*/ |
||||
private $accessUrlId; |
||||
|
||||
/** |
||||
* @var integer |
||||
* |
||||
* @ORM\Column(name="c_id", type="integer", precision=0, scale=0, nullable=false, unique=false) |
||||
*/ |
||||
private $cId; |
||||
|
||||
|
||||
/** |
||||
* Get id |
||||
* |
||||
* @return integer |
||||
*/ |
||||
public function getId() |
||||
{ |
||||
return $this->id; |
||||
} |
||||
|
||||
/** |
||||
* Set accessUrlId |
||||
* |
||||
* @param integer $accessUrlId |
||||
* @return AccessUrlRelCourse |
||||
*/ |
||||
public function setAccessUrlId($accessUrlId) |
||||
{ |
||||
$this->accessUrlId = $accessUrlId; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get accessUrlId |
||||
* |
||||
* @return integer |
||||
*/ |
||||
public function getAccessUrlId() |
||||
{ |
||||
return $this->accessUrlId; |
||||
} |
||||
|
||||
/** |
||||
* Set cId |
||||
* |
||||
* @param integer $cId |
||||
* @return AccessUrlRelCourse |
||||
*/ |
||||
public function setCId($cId) |
||||
{ |
||||
$this->cId = $cId; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get cId |
||||
* |
||||
* @return integer |
||||
*/ |
||||
public function getCId() |
||||
{ |
||||
return $this->cId; |
||||
} |
||||
} |
@ -0,0 +1,79 @@ |
||||
<?php |
||||
|
||||
namespace Entity; |
||||
|
||||
use Doctrine\ORM\Mapping as ORM; |
||||
|
||||
/** |
||||
* AccessUrlRelSession |
||||
* |
||||
* @ORM\Table(name="access_url_rel_session") |
||||
* @ORM\Entity |
||||
*/ |
||||
class AccessUrlRelSession |
||||
{ |
||||
/** |
||||
* @var integer |
||||
* |
||||
* @ORM\Column(name="access_url_id", type="integer", precision=0, scale=0, nullable=false, unique=false) |
||||
* @ORM\Id |
||||
* @ORM\GeneratedValue(strategy="NONE") |
||||
*/ |
||||
private $accessUrlId; |
||||
|
||||
/** |
||||
* @var integer |
||||
* |
||||
* @ORM\Column(name="session_id", type="integer", precision=0, scale=0, nullable=false, unique=false) |
||||
* @ORM\Id |
||||
* @ORM\GeneratedValue(strategy="NONE") |
||||
*/ |
||||
private $sessionId; |
||||
|
||||
|
||||
/** |
||||
* Set accessUrlId |
||||
* |
||||
* @param integer $accessUrlId |
||||
* @return AccessUrlRelSession |
||||
*/ |
||||
public function setAccessUrlId($accessUrlId) |
||||
{ |
||||
$this->accessUrlId = $accessUrlId; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get accessUrlId |
||||
* |
||||
* @return integer |
||||
*/ |
||||
public function getAccessUrlId() |
||||
{ |
||||
return $this->accessUrlId; |
||||
} |
||||
|
||||
/** |
||||
* Set sessionId |
||||
* |
||||
* @param integer $sessionId |
||||
* @return AccessUrlRelSession |
||||
*/ |
||||
public function setSessionId($sessionId) |
||||
{ |
||||
$this->sessionId = $sessionId; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get sessionId |
||||
* |
||||
* @return integer |
||||
*/ |
||||
public function getSessionId() |
||||
{ |
||||
return $this->sessionId; |
||||
} |
||||
} |
@ -0,0 +1,79 @@ |
||||
<?php |
||||
|
||||
namespace Entity; |
||||
|
||||
use Doctrine\ORM\Mapping as ORM; |
||||
|
||||
/** |
||||
* AccessUrlRelUser |
||||
* |
||||
* @ORM\Table(name="access_url_rel_user") |
||||
* @ORM\Entity |
||||
*/ |
||||
class AccessUrlRelUser |
||||
{ |
||||
/** |
||||
* @var integer |
||||
* |
||||
* @ORM\Column(name="access_url_id", type="integer", precision=0, scale=0, nullable=false, unique=false) |
||||
* @ORM\Id |
||||
* @ORM\GeneratedValue(strategy="NONE") |
||||
*/ |
||||
private $accessUrlId; |
||||
|
||||
/** |
||||
* @var integer |
||||
* |
||||
* @ORM\Column(name="user_id", type="integer", precision=0, scale=0, nullable=false, unique=false) |
||||
* @ORM\Id |
||||
* @ORM\GeneratedValue(strategy="NONE") |
||||
*/ |
||||
private $userId; |
||||
|
||||
|
||||
/** |
||||
* Set accessUrlId |
||||
* |
||||
* @param integer $accessUrlId |
||||
* @return AccessUrlRelUser |
||||
*/ |
||||
public function setAccessUrlId($accessUrlId) |
||||
{ |
||||
$this->accessUrlId = $accessUrlId; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get accessUrlId |
||||
* |
||||
* @return integer |
||||
*/ |
||||
public function getAccessUrlId() |
||||
{ |
||||
return $this->accessUrlId; |
||||
} |
||||
|
||||
/** |
||||
* Set userId |
||||
* |
||||
* @param integer $userId |
||||
* @return AccessUrlRelUser |
||||
*/ |
||||
public function setUserId($userId) |
||||
{ |
||||
$this->userId = $userId; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get userId |
||||
* |
||||
* @return integer |
||||
*/ |
||||
public function getUserId() |
||||
{ |
||||
return $this->userId; |
||||
} |
||||
} |
Loading…
Reference in new issue