src/Entity/EventAll.php line 13

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