Auteur.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <?php
  2. namespace DocumentBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. * Auteur
  6. *
  7. * @ORM\Table(name="auteur")
  8. * @ORM\Entity(repositoryClass="DocumentBundle\Repository\AuteurRepository")
  9. */
  10. class Auteur
  11. {
  12. /**
  13. * @var int
  14. *
  15. * @ORM\Column(name="id", type="integer")
  16. * @ORM\Id
  17. * @ORM\GeneratedValue(strategy="AUTO")
  18. */
  19. private $id;
  20. /**
  21. * @var string
  22. *
  23. * @ORM\Column(name="prenom", type="string", length=255)
  24. */
  25. private $prenom;
  26. /**
  27. * @var string
  28. *
  29. * @ORM\Column(name="nom", type="string", length=255)
  30. */
  31. private $nom;
  32. /**
  33. * @var string
  34. *
  35. * @ORM\Column(name="biographie", type="string", length=255)
  36. */
  37. private $biographie;
  38. /**
  39. * @var string
  40. *
  41. * @ORM\Column(name="genre", type="string", length=255)
  42. */
  43. private $genre;
  44. /**
  45. * @ORM\OneToMany(targetEntity="DocumentBundle\Entity\Livre", mappedBy="auteur")
  46. * @var \Doctrine\Common\Collections\Collection
  47. */
  48. private $livres;
  49. /**
  50. * @ORM\OneToOne(targetEntity="DocumentBundle\Entity\Invite", mappedBy="auteur")
  51. * @var \DocumentBundle\Entity\Invite
  52. */
  53. private $invite;
  54. /**
  55. * Get id
  56. *
  57. * @return int
  58. */
  59. public function getId()
  60. {
  61. return $this->id;
  62. }
  63. /**
  64. * Set prenom.
  65. *
  66. * @param string $prenom
  67. *
  68. * @return Auteur
  69. */
  70. public function setPrenom($prenom)
  71. {
  72. $this->prenom = $prenom;
  73. return $this;
  74. }
  75. /**
  76. * Get prenom.
  77. *
  78. * @return string
  79. */
  80. public function getPrenom()
  81. {
  82. return $this->prenom;
  83. }
  84. /**
  85. * Set nom.
  86. *
  87. * @param string $nom
  88. *
  89. * @return Auteur
  90. */
  91. public function setNom($nom)
  92. {
  93. $this->nom = $nom;
  94. return $this;
  95. }
  96. /**
  97. * Get nom.
  98. *
  99. * @return string
  100. */
  101. public function getNom()
  102. {
  103. return $this->nom;
  104. }
  105. /**
  106. * Set biographie.
  107. *
  108. * @param string $biographie
  109. *
  110. * @return Auteur
  111. */
  112. public function setBiographie($biographie)
  113. {
  114. $this->biographie = $biographie;
  115. return $this;
  116. }
  117. /**
  118. * Get biographie.
  119. *
  120. * @return string
  121. */
  122. public function getBiographie()
  123. {
  124. return $this->biographie;
  125. }
  126. /**
  127. * Set genre.
  128. *
  129. * @param string $genre
  130. *
  131. * @return Auteur
  132. */
  133. public function setGenre($genre)
  134. {
  135. $this->genre = $genre;
  136. return $this;
  137. }
  138. /**
  139. * Get genre.
  140. *
  141. * @return string
  142. */
  143. public function getGenre()
  144. {
  145. return $this->genre;
  146. }
  147. /**
  148. * Constructor
  149. */
  150. public function __construct()
  151. {
  152. $this->livres = new \Doctrine\Common\Collections\ArrayCollection();
  153. }
  154. /**
  155. * Add livre.
  156. *
  157. * @param \DocumentBundle\Entity\Livre $livre
  158. *
  159. * @return Auteur
  160. */
  161. public function addLivre(\DocumentBundle\Entity\Livre $livre)
  162. {
  163. $this->livres[] = $livre;
  164. return $this;
  165. }
  166. /**
  167. * Remove livre.
  168. *
  169. * @param \DocumentBundle\Entity\Livre $livre
  170. *
  171. * @return boolean TRUE if this collection contained the specified element, FALSE otherwise.
  172. */
  173. public function removeLivre(\DocumentBundle\Entity\Livre $livre)
  174. {
  175. return $this->livres->removeElement($livre);
  176. }
  177. /**
  178. * Get livres.
  179. *
  180. * @return \Doctrine\Common\Collections\Collection
  181. */
  182. public function getLivres()
  183. {
  184. return $this->livres;
  185. }
  186. /**
  187. * Set invite.
  188. *
  189. * @param \DocumentBundle\Entity\Invite|null $invite
  190. *
  191. * @return Auteur
  192. */
  193. public function setInvite(\DocumentBundle\Entity\Invite $invite = null)
  194. {
  195. $this->invite = $invite;
  196. return $this;
  197. }
  198. /**
  199. * Get invite.
  200. *
  201. * @return \DocumentBundle\Entity\Invite|null
  202. */
  203. public function getInvite()
  204. {
  205. return $this->invite;
  206. }
  207. }