src/Entity/Event.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use JMS\Serializer\Annotation as JMS;
  5. /**
  6.  * Event
  7.  *
  8.  * @ORM\Table(name="event")
  9.  * @ORM\Entity(repositoryClass="App\Repository\EventRepository")
  10.  * @JMS\ExclusionPolicy("all")
  11.  */
  12. class Event
  13. {
  14.     /**
  15.      * @var int
  16.      *
  17.      * @ORM\Column(name="id", type="integer")
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="AUTO")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @var string
  24.      *
  25.      * @ORM\Column(name="user", type="string", length=255)
  26.      */
  27.     private $user;
  28.     /**
  29.      * @var string
  30.      *
  31.      * @ORM\Column(name="network", type="string", length=255)
  32.      */
  33.     private $network;
  34.     /**
  35.      * @var string
  36.      *
  37.      * @ORM\Column(name="line", type="string", length=255)
  38.      */
  39.     private $line;
  40.     /**
  41.      * @var string
  42.      *
  43.      * @ORM\Column(name="stop", type="string", length=255)
  44.      */
  45.     private $stop;
  46.     /**
  47.      * @var string
  48.      *
  49.      * @ORM\Column(name="code", type="string", length=3)
  50.      */
  51.     private $code;
  52.     /**
  53.      * @var string
  54.      *
  55.      * @ORM\Column(name="codename", type="string", length=255)
  56.      */
  57.     private $codename;
  58.     /**
  59.      * @var string
  60.      *
  61.      * @ORM\Column(name="vehicule", type="string", length=255)
  62.      */
  63.     private $vehicule;
  64.     /**
  65.      * @var string
  66.      *
  67.      * @ORM\Column(name="age", type="string", length=255, nullable=true)
  68.      */
  69.     private $age;
  70.     /**
  71.      * @var string
  72.      *
  73.      * @ORM\Column(name="gender", type="string", length=255)
  74.      */
  75.     private $gender;
  76.     /**
  77.      * @var string
  78.      *
  79.      * @ORM\Column(name="mood", type="string", length=255, nullable=true)
  80.      */
  81.     private $mood;
  82.     /**
  83.      * @var string
  84.      *
  85.      * @ORM\Column(name="duration", type="string", length=255)
  86.      */
  87.     private $duration;
  88.     /**
  89.      * @var string
  90.      *
  91.      * @ORM\Column(name="comment", type="text", nullable=true)
  92.      */
  93.     private $comment;
  94.     /**
  95.      * @var string
  96.      *
  97.      * @ORM\Column(name="action", type="text")
  98.      */
  99.     private $action;
  100.     /**
  101.      * @var \DateTime
  102.      *
  103.      * @ORM\Column(name="creation", type="datetime")
  104.      */
  105.     private $creation;
  106.     /**
  107.      * @var boolean
  108.      *
  109.      * @ORM\Column(name="altercation", type="boolean", nullable=true)
  110.      */
  111.     private $altercation;
  112.     /**
  113.      * @var array
  114.      *
  115.      * @ORM\Column(name="category", type="json", nullable=true)
  116.      */
  117.     private $category;
  118.     public function __construt()
  119.     {
  120.         $this->line '-';
  121.     }
  122.     /**
  123.      * Get id
  124.      *
  125.      * @return int
  126.      */
  127.     public function getId()
  128.     {
  129.         return ($this->id) ? $this->id'-';
  130.     }
  131.     /**
  132.      * Set user
  133.      *
  134.      * @param string $user
  135.      *
  136.      * @return Event
  137.      */
  138.     public function setUser($user)
  139.     {
  140.         $this->user $user;
  141.         return $this;
  142.     }
  143.     /**
  144.      * Get user
  145.      *
  146.      * @return string
  147.      */
  148.     public function getUser()
  149.     {
  150.         return ($this->user) ? $this->user'-';
  151.     }
  152.     /**
  153.      * Set network
  154.      *
  155.      * @param string $network
  156.      *
  157.      * @return Event
  158.      */
  159.     public function setNetwork($network)
  160.     {
  161.         $this->network $network;
  162.         return $this;
  163.     }
  164.     /**
  165.      * Get network
  166.      *
  167.      * @return string
  168.      */
  169.     public function getNetwork()
  170.     {
  171.         return ($this->network) ? $this->network'-';
  172.     }
  173.     /**
  174.      * Set age
  175.      *
  176.      * @param string $age
  177.      *
  178.      * @return Event
  179.      */
  180.     public function setAge($age)
  181.     {
  182.         $this->age $age;
  183.         return $this;
  184.     }
  185.     /**
  186.      * Get age
  187.      *
  188.      * @return string
  189.      */
  190.     public function getAge()
  191.     {
  192.         return ($this->age) ? $this->age '-';
  193.     }
  194.     /**
  195.      * Set gender
  196.      *
  197.      * @param string $gender
  198.      *
  199.      * @return Event
  200.      */
  201.     public function setGender($gender)
  202.     {
  203.         $this->gender $gender;
  204.         return $this;
  205.     }
  206.     /**
  207.      * Get gender
  208.      *
  209.      * @return string
  210.      */
  211.     public function getGender()
  212.     {
  213.         return ($this->gender) ? $this->gender'-';
  214.     }
  215.     /**
  216.      * Set mood
  217.      *
  218.      * @param string $mood
  219.      *
  220.      * @return Event
  221.      */
  222.     public function setMood($mood)
  223.     {
  224.         $this->mood $mood;
  225.         return $this;
  226.     }
  227.     /**
  228.      * Get mood
  229.      *
  230.      * @return string
  231.      */
  232.     public function getMood()
  233.     {
  234.         return ($this->mood) ? $this->mood'-';
  235.     }
  236.     /**
  237.      * Set duration
  238.      *
  239.      * @param string $duration
  240.      *
  241.      * @return Event
  242.      */
  243.     public function setDuration($duration)
  244.     {
  245.         $this->duration $duration;
  246.         return $this;
  247.     }
  248.     /**
  249.      * Get duration
  250.      *
  251.      * @return string
  252.      */
  253.     public function getDuration()
  254.     {
  255.         return ($this->duration) ? $this->duration'-';
  256.     }
  257.     /**
  258.      * Set comment
  259.      *
  260.      * @param string $comment
  261.      *
  262.      * @return Event
  263.      */
  264.     public function setComment($comment)
  265.     {
  266.         $this->comment $comment;
  267.         return $this;
  268.     }
  269.     /**
  270.      * Get comment
  271.      *
  272.      * @return string
  273.      */
  274.     public function getComment()
  275.     {
  276.         return ($this->comment) ? $this->comment'-';
  277.     }
  278.     /**
  279.      * Set action
  280.      *
  281.      * @param string $action
  282.      *
  283.      * @return Event
  284.      */
  285.     public function setAction($action)
  286.     {
  287.         $this->action $action;
  288.         return $this;
  289.     }
  290.     /**
  291.      * Get action
  292.      *
  293.      * @return string
  294.      */
  295.     public function getAction()
  296.     {
  297.         return ($this->action) ? $this->action'-';
  298.     }
  299.     /**
  300.      * Set altercation
  301.      *
  302.      * @param boolean $altercation
  303.      *
  304.      * @return Event
  305.      */
  306.     public function setAltercation($altercation)
  307.     {
  308.         $this->altercation $altercation;
  309.         return $this;
  310.     }
  311.     /**
  312.      * Get altercation
  313.      *
  314.      * @return boolean
  315.      */
  316.     public function getAltercation()
  317.     {
  318.         return ($this->altercation) ? $this->altercation'-';
  319.     }
  320.     /**
  321.      * Set creation
  322.      *
  323.      * @param \DateTime $creation
  324.      *
  325.      * @return Event
  326.      */
  327.     public function setCreation($creation)
  328.     {
  329.         $this->creation $creation;
  330.         return $this;
  331.     }
  332.     /**
  333.      * Get creation
  334.      *
  335.      * @return \DateTime
  336.      */
  337.     public function getCreation()
  338.     {
  339.         return ($this->creation) ? $this->creation'-';
  340.     }
  341.     /**
  342.      * Set line
  343.      *
  344.      * @param string $line
  345.      *
  346.      * @return Event
  347.      */
  348.     public function setLine($line)
  349.     {
  350.         $this->line $line;
  351.         return $this;
  352.     }
  353.     /**
  354.      * Get line
  355.      *
  356.      * @return string
  357.      */
  358.     public function getLine()
  359.     {
  360.         return ($this->line) ? $this->line'-';
  361.     }
  362.     /**
  363.      * Set code
  364.      *
  365.      * @param string $code
  366.      *
  367.      * @return Event
  368.      */
  369.     public function setCode($code)
  370.     {
  371.         $this->code $code;
  372.         return $this;
  373.     }
  374.     /**
  375.      * Get code
  376.      *
  377.      * @return string
  378.      */
  379.     public function getCode()
  380.     {
  381.         return ($this->code) ? $this->code'-';
  382.     }
  383.     /**
  384.      * Set codename
  385.      *
  386.      * @param string $codename
  387.      *
  388.      * @return Event
  389.      */
  390.     public function setCodename($codename)
  391.     {
  392.         $this->codename $codename;
  393.         return $this;
  394.     }
  395.     /**
  396.      * Get codename
  397.      *
  398.      * @return string
  399.      */
  400.     public function getCodename()
  401.     {
  402.         return ($this->codename) ? $this->codename'-';
  403.     }
  404.     /**
  405.      * Set vehicule
  406.      *
  407.      * @param string $vehicule
  408.      *
  409.      * @return Event
  410.      */
  411.     public function setVehicule($vehicule)
  412.     {
  413.         $this->vehicule $vehicule;
  414.         return $this;
  415.     }
  416.     /**
  417.      * Get vehicule
  418.      *
  419.      * @return string
  420.      */
  421.     public function getVehicule()
  422.     {
  423.         return ($this->vehicule) ? $this->vehicule'-';
  424.     }
  425.     /**
  426.      * Set stop
  427.      *
  428.      * @param string $stop
  429.      *
  430.      * @return Event
  431.      */
  432.     public function setStop($stop)
  433.     {
  434.         $this->stop $stop;
  435.         return $this;
  436.     }
  437.     /**
  438.      * Get stop
  439.      *
  440.      * @return string
  441.      */
  442.     public function getStop()
  443.     {
  444.         return ($this->stop) ? $this->stop'-';
  445.     }
  446.     /**
  447.      * Set category
  448.      *
  449.      * @param string $category
  450.      *
  451.      * @return Event
  452.      */
  453.     public function setCategory($category)
  454.     {
  455.         $this->category $category;
  456.         return $this;
  457.     }
  458.  
  459.      /**
  460.       * Get category
  461.       *
  462.       * @return string
  463.       */
  464.     public function getCategory()
  465.     {
  466.         return ($this->category) ? $this->category'-';
  467.     }
  468. }