Gina Next Generation
 All Classes Namespaces Files Functions Variables
Payed.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  * Payed
00009  *
00010  * @ORM\Table(name="payed")
00011  * @ORM\Entity
00012  */
00013 class Payed
00014 {
00015     /**
00016      * @var integer
00017      *
00018      * @ORM\Column(name="id_payed", type="integer", nullable=false)
00019      * @ORM\Id
00020      * @ORM\GeneratedValue(strategy="IDENTITY")
00021      */
00022     private $idPayed;
00023 
00024     /**
00025      * @var integer
00026      *
00027      * @ORM\Column(name="id_object", type="integer", nullable=true)
00028      */
00029     private $idObject;
00030 
00031     /**
00032      * @var string
00033      *
00034      * @ORM\Column(name="cd_provider_account", type="string", length=45, nullable=true)
00035      */
00036     private $cdProviderAccount;
00037 
00038     /**
00039      * @var string
00040      *
00041      * @ORM\Column(name="cd_branch_order", type="string", length=45, nullable=true)
00042      */
00043     private $cdBranchOrder;
00044 
00045     /**
00046      * @var string
00047      *
00048      * @ORM\Column(name="cm_payed", type="string", length=255, nullable=true)
00049      */
00050     private $cmPayed;
00051 
00052     /**
00053      * @var boolean
00054      *
00055      * @ORM\Column(name="bl_deactivated", type="boolean", nullable=true)
00056      */
00057     private $blDeactivated;
00058 
00059     /**
00060      * @var \Provider
00061      *
00062      * @ORM\ManyToOne(targetEntity="Provider")
00063      * @ORM\JoinColumns({
00064      *   @ORM\JoinColumn(name="id_provider", referencedColumnName="id_provider")
00065      * })
00066      */
00067     private $idProvider;
00068 
00069     /**
00070      * @var \Address
00071      *
00072      * @ORM\ManyToOne(targetEntity="Address")
00073      * @ORM\JoinColumns({
00074      *   @ORM\JoinColumn(name="id_address", referencedColumnName="id_address")
00075      * })
00076      */
00077     private $idAddress;
00078 
00079     /**
00080      * @var \Contact
00081      *
00082      * @ORM\ManyToOne(targetEntity="Contact")
00083      * @ORM\JoinColumns({
00084      *   @ORM\JoinColumn(name="id_contact", referencedColumnName="id_contact")
00085      * })
00086      */
00087     private $idContact;
00088 
00089     /**
00090      * @var \ObjectType
00091      *
00092      * @ORM\ManyToOne(targetEntity="ObjectType")
00093      * @ORM\JoinColumns({
00094      *   @ORM\JoinColumn(name="id_object_type", referencedColumnName="id_object_type")
00095      * })
00096      */
00097     private $idObjectType;
00098 
00099     /**
00100      * @var \Branch
00101      *
00102      * @ORM\ManyToOne(targetEntity="Branch")
00103      * @ORM\JoinColumns({
00104      *   @ORM\JoinColumn(name="id_branch", referencedColumnName="id_branch")
00105      * })
00106      */
00107     private $idBranch;
00108 
00109 
00110 
00111     /**
00112      * Get idPayed
00113      *
00114      * @return integer 
00115      */
00116     public function getIdPayed()
00117     {
00118         return $this->idPayed;
00119     }
00120 
00121     /**
00122      * Set idObject
00123      *
00124      * @param integer $idObject
00125      * @return Payed
00126      */
00127     public function setIdObject($idObject)
00128     {
00129         $this->idObject = $idObject;
00130     
00131         return $this;
00132     }
00133 
00134     /**
00135      * Get idObject
00136      *
00137      * @return integer 
00138      */
00139     public function getIdObject()
00140     {
00141         return $this->idObject;
00142     }
00143 
00144     /**
00145      * Set cdProviderAccount
00146      *
00147      * @param string $cdProviderAccount
00148      * @return Payed
00149      */
00150     public function setCdProviderAccount($cdProviderAccount)
00151     {
00152         $this->cdProviderAccount = $cdProviderAccount;
00153     
00154         return $this;
00155     }
00156 
00157     /**
00158      * Get cdProviderAccount
00159      *
00160      * @return string 
00161      */
00162     public function getCdProviderAccount()
00163     {
00164         return $this->cdProviderAccount;
00165     }
00166 
00167     /**
00168      * Set cdBranchOrder
00169      *
00170      * @param string $cdBranchOrder
00171      * @return Payed
00172      */
00173     public function setCdBranchOrder($cdBranchOrder)
00174     {
00175         $this->cdBranchOrder = $cdBranchOrder;
00176     
00177         return $this;
00178     }
00179 
00180     /**
00181      * Get cdBranchOrder
00182      *
00183      * @return string 
00184      */
00185     public function getCdBranchOrder()
00186     {
00187         return $this->cdBranchOrder;
00188     }
00189 
00190     /**
00191      * Set cmPayed
00192      *
00193      * @param string $cmPayed
00194      * @return Payed
00195      */
00196     public function setCmPayed($cmPayed)
00197     {
00198         $this->cmPayed = $cmPayed;
00199     
00200         return $this;
00201     }
00202 
00203     /**
00204      * Get cmPayed
00205      *
00206      * @return string 
00207      */
00208     public function getCmPayed()
00209     {
00210         return $this->cmPayed;
00211     }
00212 
00213     /**
00214      * Set blDeactivated
00215      *
00216      * @param boolean $blDeactivated
00217      * @return Payed
00218      */
00219     public function setBlDeactivated($blDeactivated)
00220     {
00221         $this->blDeactivated = $blDeactivated;
00222     
00223         return $this;
00224     }
00225 
00226     /**
00227      * Get blDeactivated
00228      *
00229      * @return boolean 
00230      */
00231     public function getBlDeactivated()
00232     {
00233         return $this->blDeactivated;
00234     }
00235 
00236     /**
00237      * Set idProvider
00238      *
00239      * @param \Etrali\GinangBundle\Entity\Provider $idProvider
00240      * @return Payed
00241      */
00242     public function setIdProvider(\Etrali\GinangBundle\Entity\Provider $idProvider = null)
00243     {
00244         $this->idProvider = $idProvider;
00245     
00246         return $this;
00247     }
00248 
00249     /**
00250      * Get idProvider
00251      *
00252      * @return \Etrali\GinangBundle\Entity\Provider 
00253      */
00254     public function getIdProvider()
00255     {
00256         return $this->idProvider;
00257     }
00258 
00259     /**
00260      * Set idAddress
00261      *
00262      * @param \Etrali\GinangBundle\Entity\Address $idAddress
00263      * @return Payed
00264      */
00265     public function setIdAddress(\Etrali\GinangBundle\Entity\Address $idAddress = null)
00266     {
00267         $this->idAddress = $idAddress;
00268     
00269         return $this;
00270     }
00271 
00272     /**
00273      * Get idAddress
00274      *
00275      * @return \Etrali\GinangBundle\Entity\Address 
00276      */
00277     public function getIdAddress()
00278     {
00279         return $this->idAddress;
00280     }
00281 
00282     /**
00283      * Set idContact
00284      *
00285      * @param \Etrali\GinangBundle\Entity\Contact $idContact
00286      * @return Payed
00287      */
00288     public function setIdContact(\Etrali\GinangBundle\Entity\Contact $idContact = null)
00289     {
00290         $this->idContact = $idContact;
00291     
00292         return $this;
00293     }
00294 
00295     /**
00296      * Get idContact
00297      *
00298      * @return \Etrali\GinangBundle\Entity\Contact 
00299      */
00300     public function getIdContact()
00301     {
00302         return $this->idContact;
00303     }
00304 
00305     /**
00306      * Set idObjectType
00307      *
00308      * @param \Etrali\GinangBundle\Entity\ObjectType $idObjectType
00309      * @return Payed
00310      */
00311     public function setIdObjectType(\Etrali\GinangBundle\Entity\ObjectType $idObjectType = null)
00312     {
00313         $this->idObjectType = $idObjectType;
00314     
00315         return $this;
00316     }
00317 
00318     /**
00319      * Get idObjectType
00320      *
00321      * @return \Etrali\GinangBundle\Entity\ObjectType 
00322      */
00323     public function getIdObjectType()
00324     {
00325         return $this->idObjectType;
00326     }
00327 
00328     /**
00329      * Set idBranch
00330      *
00331      * @param \Etrali\GinangBundle\Entity\Branch $idBranch
00332      * @return Payed
00333      */
00334     public function setIdBranch(\Etrali\GinangBundle\Entity\Branch $idBranch = null)
00335     {
00336         $this->idBranch = $idBranch;
00337     
00338         return $this;
00339     }
00340 
00341     /**
00342      * Get idBranch
00343      *
00344      * @return \Etrali\GinangBundle\Entity\Branch 
00345      */
00346     public function getIdBranch()
00347     {
00348         return $this->idBranch;
00349     }
00350 }
 All Classes Namespaces Files Functions Variables