src/Entity/Projet.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProjetRepository;
  4. use App\Entity\User;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /* Projet sur lesquels l'utilisateur a travaillé */ 
  7. #[ORM\Entity(repositoryClassProjetRepository::class)]
  8. class Projet
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column(type'integer')]
  13.     private $id;
  14.     /* nom du projet */
  15.     #[ORM\Column(type'string'length100)]
  16.     private $nom;
  17.     /* Description succinte du projet */
  18.     #[ORM\Column(type'text')]
  19.     private $description;
  20.     /* date de début du projet */ 
  21.     #[ORM\Column(type'date')]
  22.     private $datedebut;
  23.     /* date de fin du projet */
  24.     #[ORM\Column(type'date')]
  25.     private $datefin;
  26.     /* entreprise correspondant */ 
  27.     #[ORM\Column(type'string'length100nullabletrue)]
  28.     private $entreprise;
  29.     /* Utilisateur qui l'a créé sur la plateforme */ 
  30.     #[ORM\ManyToOne(targetEntityUser::class)]
  31.     #[ORM\JoinColumn(nullablefalse)]
  32.     private $user;
  33.     /* type du projet
  34.     1 - public
  35.     2 - privé
  36.     3 - thése
  37.     */
  38.     #[ORM\Column(type"integer"length"1")]
  39.     private $type;
  40.     public function __construct()
  41.     {
  42.         $this->setType(1);
  43.     }
  44.     public function getId(): ?int
  45.     {
  46.         return $this->id;
  47.     }
  48.     public function getNom(): ?string
  49.     {
  50.         return $this->nom;
  51.     }
  52.     public function setNom(string $nom): self
  53.     {
  54.         $this->nom $nom;
  55.         return $this;
  56.     }
  57.     public function getDescription(): ?string
  58.     {
  59.         return $this->description;
  60.     }
  61.     public function setDescription(string $description): self
  62.     {
  63.         $this->description $description;
  64.         return $this;
  65.     }
  66.     public function getDatedebut(): ?\DateTimeInterface
  67.     {
  68.         return $this->datedebut;
  69.     }
  70.     public function setDatedebut(\DateTimeInterface $datedebut): self
  71.     {
  72.         $this->datedebut $datedebut;
  73.         return $this;
  74.     }
  75.     public function getDatefin(): ?\DateTimeInterface
  76.     {
  77.         return $this->datefin;
  78.     }
  79.     public function setDatefin(\DateTimeInterface $datefin): self
  80.     {
  81.         $this->datefin $datefin;
  82.         return $this;
  83.     }
  84.     public function getEntreprise(): ?string
  85.     {
  86.         return $this->entreprise;
  87.     }
  88.     public function setEntreprise(string $entreprise): self
  89.     {
  90.         $this->entreprise $entreprise;
  91.         return $this;
  92.     }
  93.     /**
  94.      * Get the value of user
  95.      */ 
  96.     public function getUser()
  97.     {
  98.         return $this->user;
  99.     }
  100.     /**
  101.      * Set the value of user
  102.      *
  103.      * @return  self
  104.      */ 
  105.     public function setUser($user)
  106.     {
  107.         $this->user $user;
  108.         return $this;
  109.     }
  110.     /**
  111.      * Get the value of public
  112.      */ 
  113.     public function getType()
  114.     {
  115.         return $this->type;
  116.     }
  117.     /**
  118.      * Set the value of public
  119.      *
  120.      * @return  self
  121.      */ 
  122.     public function setType($type)
  123.     {
  124.         $this->type $type;
  125.         return $this;
  126.     }
  127. }