%PDF- %PDF-
Direktori : /home/emtnaeewxm/www/src/EEM/VenteBundle/Entity/ |
Current File : /home/emtnaeewxm/www/src/EEM/VenteBundle/Entity/Tresorie.php |
<?php namespace EEM\VenteBundle\Entity; use Doctrine\ORM\Mapping as ORM; /** * Tresorie * * @ORM\Table(name="tresorie") * @ORM\Entity(repositoryClass="EEM\VenteBundle\Repository\TresorieRepository") */ class Tresorie { /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @var \DateTime * * @ORM\Column(name="date", type="date", nullable=true) */ private $date; /** * @var string * * @ORM\Column(name="montant", type="decimal", precision=10, scale=3, nullable=true) */ private $montant; /** * Get id * * @return int */ public function getId() { return $this->id; } /** * Set date * * @param \DateTime $date * * @return Tresorie */ public function setDate($date) { $this->date = $date; return $this; } /** * Get date * * @return \DateTime */ public function getDate() { return $this->date; } /** * Set montant * * @param string $montant * * @return Tresorie */ public function setMontant($montant) { $this->montant = $montant; return $this; } /** * Get montant * * @return string */ public function getMontant() { return $this->montant; } }