<?php
namespace App\Entity;
use App\Repository\CinRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=CinRepository::class)
*/
class Cin
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\ManyToOne(targetEntity=PieceJustificative::class, inversedBy="cins")
* @ORM\JoinColumn(nullable=false, onDelete="CASCADE")
*/
private $pieceJustificative;
/**
* @ORM\Column(type="string", length=255)
*/
private $name;
public function getId(): ?int
{
return $this->id;
}
public function getPieceJustificative(): ?PieceJustificative
{
return $this->pieceJustificative;
}
public function setPieceJustificative(?PieceJustificative $pieceJustificative): self
{
$this->pieceJustificative = $pieceJustificative;
return $this;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
}