Gina Next Generation
 All Classes Namespaces Files Functions Variables
ConnectServiceTs.php
Go to the documentation of this file.
00001 <?php
00002 
00003 namespace Etrali\GinangBundle\Entity;
00004 
00005 use Doctrine\ORM\Mapping as ORM;
00006 
00007 /**
00008  * ConnectServiceTs
00009  *
00010  * @ORM\Table(name="connect_service_ts")
00011  * @ORM\Entity
00012  */
00013 class ConnectServiceTs
00014 {
00015     /**
00016      * @var integer
00017      *
00018      * @ORM\Column(name="id_connect_service_ts", type="integer", nullable=false)
00019      * @ORM\Id
00020      * @ORM\GeneratedValue(strategy="IDENTITY")
00021      */
00022     private $idConnectServiceTs;
00023 
00024     /**
00025      * @var \ConnectionService
00026      *
00027      * @ORM\ManyToOne(targetEntity="ConnectionService")
00028      * @ORM\JoinColumns({
00029      *   @ORM\JoinColumn(name="id_connection_service", referencedColumnName="id_connection_service")
00030      * })
00031      */
00032     private $idConnectionService;
00033 
00034     /**
00035      * @var \Ts
00036      *
00037      * @ORM\ManyToOne(targetEntity="Ts")
00038      * @ORM\JoinColumns({
00039      *   @ORM\JoinColumn(name="id_ts", referencedColumnName="id_ts")
00040      * })
00041      */
00042     private $idTs;
00043 
00044 
00045 
00046     /**
00047      * Get idConnectServiceTs
00048      *
00049      * @return integer 
00050      */
00051     public function getIdConnectServiceTs()
00052     {
00053         return $this->idConnectServiceTs;
00054     }
00055 
00056     /**
00057      * Set idConnectionService
00058      *
00059      * @param \Etrali\GinangBundle\Entity\ConnectionService $idConnectionService
00060      * @return ConnectServiceTs
00061      */
00062     public function setIdConnectionService(\Etrali\GinangBundle\Entity\ConnectionService $idConnectionService = null)
00063     {
00064         $this->idConnectionService = $idConnectionService;
00065     
00066         return $this;
00067     }
00068 
00069     /**
00070      * Get idConnectionService
00071      *
00072      * @return \Etrali\GinangBundle\Entity\ConnectionService 
00073      */
00074     public function getIdConnectionService()
00075     {
00076         return $this->idConnectionService;
00077     }
00078 
00079     /**
00080      * Set idTs
00081      *
00082      * @param \Etrali\GinangBundle\Entity\Ts $idTs
00083      * @return ConnectServiceTs
00084      */
00085     public function setIdTs(\Etrali\GinangBundle\Entity\Ts $idTs = null)
00086     {
00087         $this->idTs = $idTs;
00088     
00089         return $this;
00090     }
00091 
00092     /**
00093      * Get idTs
00094      *
00095      * @return \Etrali\GinangBundle\Entity\Ts 
00096      */
00097     public function getIdTs()
00098     {
00099         return $this->idTs;
00100     }
00101 }
 All Classes Namespaces Files Functions Variables