src/Entity/Communique.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CommuniqueRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * @ORM\Entity(repositoryClass=CommuniqueRepository::class)
  7. */
  8. class Communique
  9. {
  10. /**
  11. * @ORM\Id
  12. * @ORM\GeneratedValue
  13. * @ORM\Column(type="integer")
  14. */
  15. private $id;
  16. /**
  17. * @ORM\Column(type="string", length=255)
  18. */
  19. private $titre;
  20. /**
  21. * @ORM\Column(type="text")
  22. */
  23. private $contenu;
  24. /**
  25. * @ORM\Column(type="datetime")
  26. */
  27. private $date;
  28. /**
  29. * @ORM\ManyToOne(targetEntity=Federation::class, inversedBy="communiques")
  30. */
  31. private $federation;
  32. /**
  33. * @ORM\ManyToOne(targetEntity=Province::class, inversedBy="communiques")
  34. */
  35. private $province;
  36. /**
  37. * @ORM\Column(type="boolean", nullable=true)
  38. */
  39. private $urgent;
  40. public function getId(): ?int
  41. {
  42. return $this->id;
  43. }
  44. public function getTitre(): ?string
  45. {
  46. return $this->titre;
  47. }
  48. public function setTitre(string $titre): self
  49. {
  50. $this->titre = $titre;
  51. return $this;
  52. }
  53. public function getContenu(): ?string
  54. {
  55. return $this->contenu;
  56. }
  57. public function setContenu(string $contenu): self
  58. {
  59. $this->contenu = $contenu;
  60. return $this;
  61. }
  62. public function getDate(): ?\DateTimeInterface
  63. {
  64. return $this->date;
  65. }
  66. public function setDate(\DateTimeInterface $date): self
  67. {
  68. $this->date = $date;
  69. return $this;
  70. }
  71. public function getFederation(): ?Federation
  72. {
  73. return $this->federation;
  74. }
  75. public function setFederation(?Federation $federation): self
  76. {
  77. $this->federation = $federation;
  78. return $this;
  79. }
  80. public function getProvince(): ?Province
  81. {
  82. return $this->province;
  83. }
  84. public function setProvince(?Province $province): self
  85. {
  86. $this->province = $province;
  87. return $this;
  88. }
  89. public function getUrgent(): ?bool
  90. {
  91. return $this->urgent;
  92. }
  93. public function setUrgent(?bool $urgent): self
  94. {
  95. $this->urgent = $urgent;
  96. return $this;
  97. }
  98. }