src/Entity/Incident.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Gedmo\Mapping\Annotation as Gedmo;
  5. /**
  6.  * Incident
  7.  *
  8.  * @ORM\Table(name="incident", uniqueConstraints={@ORM\UniqueConstraint(name="incident_id_uindex", columns={"id"})}, indexes={@ORM\Index(name="incident_user_id_fk", columns={"user_id"})})
  9.  * @ORM\Entity(repositoryClass="App\Repository\IncidentRepository")
  10.  * @Gedmo\Loggable
  11.  */
  12. class Incident
  13. {
  14.     /**
  15.      * @var integer
  16.      *
  17.      * @ORM\Column(name="id", type="integer", nullable=false)
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="IDENTITY")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @var boolean
  24.      *
  25.      * @ORM\Column(name="cnil_informed", type="boolean", nullable=true)
  26.      * @Gedmo\Versioned
  27.      */
  28.     private $cnilInformed true;
  29.     /**
  30.      * @var boolean
  31.      *
  32.      * @ORM\Column(name="notice_72_h", type="boolean", nullable=true)
  33.      * @Gedmo\Versioned
  34.      */
  35.     private $notice72H true;
  36.     /**
  37.      * @var string
  38.      *
  39.      * @ORM\Column(name="type", type="string", length=255, nullable=true)
  40.      * @Gedmo\Versioned
  41.      */
  42.     private $type;
  43.     /**
  44.      * @var string
  45.      *
  46.      * @ORM\Column(name="people_number", type="string", length=255, nullable=true)
  47.      * @Gedmo\Versioned
  48.      */
  49.     private $peopleNumber;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="file_type", type="string", length=255, nullable=true)
  54.      * @Gedmo\Versioned
  55.      */
  56.     private $fileType;
  57.     /**
  58.      * @var string
  59.      *
  60.      * @ORM\Column(name="consequences", type="string", length=255, nullable=true)
  61.      * @Gedmo\Versioned
  62.      */
  63.     private $consequences;
  64.     /**
  65.      * @var string
  66.      *
  67.      * @ORM\Column(name="taken_measures", type="string", length=255, nullable=true)
  68.      * @Gedmo\Versioned
  69.      */
  70.     private $takenMeasures;
  71.     /**
  72.      * @var boolean
  73.      *
  74.      * @ORM\Column(name="people_informed", type="boolean", nullable=true)
  75.      * @Gedmo\Versioned
  76.      */
  77.     private $peopleInformed true;
  78.     /**
  79.      * @var \DateTime
  80.      *
  81.      * @ORM\Column(name="date", type="datetime", nullable=true)
  82.      * @Gedmo\Versioned
  83.      */
  84.     private $date;
  85.     /**
  86.      * @var \DateTime
  87.      *
  88.      * @ORM\Column(name="creation_date", type="datetime", nullable=true)
  89.      */
  90.     private $creationDate;
  91.     /**
  92.      * @var \DateTime
  93.      *
  94.      * @ORM\Column(name="edit_date", type="datetime", nullable=true)
  95.      * @Gedmo\Versioned
  96.      */
  97.     private $editDate;
  98.     /**
  99.      * @var boolean
  100.      *
  101.      * @ORM\Column(name="`group`", type="boolean", nullable=true)
  102.      * @Gedmo\Versioned
  103.      */
  104.     private $group false;
  105.     /**
  106.      * @var string
  107.      *
  108.      * @ORM\Column(name="file", type="string", length=255, nullable=true)
  109.      * @Gedmo\Versioned
  110.      */
  111.     private $file;
  112.     /**
  113.      * @var User
  114.      *
  115.      * @ORM\ManyToOne(targetEntity="User")
  116.      * @ORM\JoinColumns({
  117.      *   @ORM\JoinColumn(name="user_id", referencedColumnName="id")
  118.      * })
  119.      */
  120.     private $user;
  121.     /**
  122.      * @return int
  123.      */
  124.     public function getId()
  125.     {
  126.         return $this->id;
  127.     }
  128.     /**
  129.      * @param int $id
  130.      */
  131.     public function setId($id)
  132.     {
  133.         $this->id $id;
  134.     }
  135.     /**
  136.      * @return bool
  137.      */
  138.     public function isCnilInformed()
  139.     {
  140.         return $this->cnilInformed;
  141.     }
  142.     /**
  143.      * @param bool $cnilInformed
  144.      */
  145.     public function setCnilInformed($cnilInformed)
  146.     {
  147.         $this->cnilInformed $cnilInformed;
  148.     }
  149.     /**
  150.      * @return bool
  151.      */
  152.     public function isNotice72H()
  153.     {
  154.         return $this->notice72H;
  155.     }
  156.     /**
  157.      * @param bool $notice72H
  158.      */
  159.     public function setNotice72H($notice72H)
  160.     {
  161.         $this->notice72H $notice72H;
  162.     }
  163.     /**
  164.      * @return string
  165.      */
  166.     public function getType()
  167.     {
  168.         return $this->type;
  169.     }
  170.     /**
  171.      * @param string $type
  172.      */
  173.     public function setType($type)
  174.     {
  175.         $this->type $type;
  176.     }
  177.     /**
  178.      * @return string
  179.      */
  180.     public function getPeopleNumber()
  181.     {
  182.         return $this->peopleNumber;
  183.     }
  184.     /**
  185.      * @param string $peopleNumber
  186.      */
  187.     public function setPeopleNumber($peopleNumber)
  188.     {
  189.         $this->peopleNumber $peopleNumber;
  190.     }
  191.     /**
  192.      * @return string
  193.      */
  194.     public function getFileType()
  195.     {
  196.         return $this->fileType;
  197.     }
  198.     /**
  199.      * @param string $fileType
  200.      */
  201.     public function setFileType($fileType)
  202.     {
  203.         $this->fileType $fileType;
  204.     }
  205.     /**
  206.      * @return string
  207.      */
  208.     public function getConsequences()
  209.     {
  210.         return $this->consequences;
  211.     }
  212.     /**
  213.      * @param string $consequences
  214.      */
  215.     public function setConsequences($consequences)
  216.     {
  217.         $this->consequences $consequences;
  218.     }
  219.     /**
  220.      * @return string
  221.      */
  222.     public function getTakenMeasures()
  223.     {
  224.         return $this->takenMeasures;
  225.     }
  226.     /**
  227.      * @param string $takenMeasures
  228.      */
  229.     public function setTakenMeasures($takenMeasures)
  230.     {
  231.         $this->takenMeasures $takenMeasures;
  232.     }
  233.     /**
  234.      * @return bool
  235.      */
  236.     public function isPeopleInformed()
  237.     {
  238.         return $this->peopleInformed;
  239.     }
  240.     /**
  241.      * @param bool $peopleInformed
  242.      */
  243.     public function setPeopleInformed($peopleInformed)
  244.     {
  245.         $this->peopleInformed $peopleInformed;
  246.     }
  247.     /**
  248.      * @return \DateTime
  249.      */
  250.     public function getDate()
  251.     {
  252.         return $this->date;
  253.     }
  254.     /**
  255.      * @param \DateTime $date
  256.      */
  257.     public function setDate($date)
  258.     {
  259.         $this->date $date;
  260.     }
  261.     /**
  262.      * @return \DateTime
  263.      */
  264.     public function getCreationDate()
  265.     {
  266.         return $this->creationDate;
  267.     }
  268.     /**
  269.      * @param \DateTime $creationDate
  270.      */
  271.     public function setCreationDate($creationDate)
  272.     {
  273.         $this->creationDate $creationDate;
  274.     }
  275.     /**
  276.      * @return \DateTime
  277.      */
  278.     public function getEditDate()
  279.     {
  280.         return $this->editDate;
  281.     }
  282.     /**
  283.      * @param \DateTime $editDate
  284.      */
  285.     public function setEditDate($editDate)
  286.     {
  287.         $this->editDate $editDate;
  288.     }
  289.     /**
  290.      * @return bool
  291.      */
  292.     public function isGroup(): bool
  293.     {
  294.         return $this->group;
  295.     }
  296.     /**
  297.      * @param bool $group
  298.      */
  299.     public function setGroup(bool $group): void
  300.     {
  301.         $this->group $group;
  302.     }
  303.     /**
  304.      * @return string
  305.      */
  306.     public function getFile()
  307.     {
  308.         return $this->file;
  309.     }
  310.     /**
  311.      * @param string $file
  312.      */
  313.     public function setFile(string $file): void
  314.     {
  315.         $this->file $file;
  316.     }
  317.     /**
  318.      * @return User
  319.      */
  320.     public function getUser()
  321.     {
  322.         return $this->user;
  323.     }
  324.     /**
  325.      * @param User $user
  326.      */
  327.     public function setUser($user)
  328.     {
  329.         $this->user $user;
  330.     }
  331. }