ヤミ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: BusCheck.php
<?php namespace AppBundle\Entity; use Doctrine\ORM\Mapping as ORM; use Symfony\Component\Validator\Constraints as Assert; use JMS\Serializer\Annotation as Serializer; /** * BusCheck * * @ORM\Table(name="bus_check") * @ORM\Entity(repositoryClass="AppBundle\Repository\BusCheckRepository") */ class BusCheck { /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") * @Serializer\Groups({"LIST", "BUS_CHECK_DETAILS"}) */ private $busCheckId; /** * @var \AppBundle\Entity\Bus * * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Bus") * @ORM\JoinColumn(nullable=false) * @Serializer\Groups({"LIST","BUS_CHECK_DETAILS"}) * @Serializer\MaxDepth(1) */ private $bus; /** * @var \DateTime * * @ORM\Column(name="created_at", type="datetime", nullable=true) * @Serializer\Groups({"BUS_CHECK_DETAILS"}) */ private $createdAt; /** * @var string * * @ORM\Column(name="wheels_status", type="string", length=45, nullable=true) * @Serializer\Groups({"BUS_CHECK_DETAILS"}) */ private $wheelsStatus; /** * @var string * * @ORM\Column(name="motor_status", type="string", length=45, nullable=true) * @Serializer\Groups({ "BUS_CHECK_DETAILS"}) */ private $motorStatus; /** * @var string * * @ORM\Column(name="global_status", type="string", length=45, nullable=true) * @Serializer\Groups({"BUS_CHECK_DETAILS"}) * * @Assert\NotBlank */ private $globalStatus; /** * @var \AppBundle\Entity\Staff * * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Staff") * @ORM\JoinColumn(nullable=false) * @Serializer\Groups({"BUS_CHECK_DETAILS"}) * @Serializer\MaxDepth(1) */ private $mechanic; /** * @var string * * @ORM\Column(name="mechanic_signature", type="string", length=2048, nullable=true) * @Serializer\Groups({"BUS_CHECK_DETAILS"}) */ private $mechanicSignature; public function __construct(){ $this->createdAt = new \DateTime( ); } /** * Get busCheckId * * @return integer */ public function getBusCheckId() { return $this->busCheckId; } /** * Set wheelsStatus * * @param string $wheelsStatus * * @return BusCheck */ public function setWheelsStatus($wheelsStatus) { $this->wheelsStatus = $wheelsStatus; return $this; } /** * Get wheelsStatus * * @return string */ public function getWheelsStatus() { return $this->wheelsStatus; } /** * Set motorStatus * * @param string $motorStatus * * @return BusCheck */ public function setMotorStatus($motorStatus) { $this->motorStatus = $motorStatus; return $this; } /** * Get motorStatus * * @return string */ public function getMotorStatus() { return $this->motorStatus; } /** * Set globalStatus * * @param string $globalStatus * * @return BusCheck */ public function setGlobalStatus($globalStatus) { $this->globalStatus = $globalStatus; return $this; } /** * Get globalStatus * * @return string */ public function getGlobalStatus() { return $this->globalStatus; } /** * Set mechanicSignature * * @param string $mechanicSignature * * @return BusCheck */ public function setMechanicSignature($mechanicSignature) { $this->mechanicSignature = $mechanicSignature; return $this; } /** * Get mechanicSignature * * @return string */ public function getMechanicSignature() { return $this->mechanicSignature; } /** * Set bus * * @param \AppBundle\Entity\Bus $bus * * @return BusCheck */ public function setBus(\AppBundle\Entity\Bus $bus) { $this->bus = $bus; return $this; } /** * Get bus * * @return \AppBundle\Entity\Bus */ public function getBus() { return $this->bus; } /** * Set mechanic * * @param \AppBundle\Entity\Staff $mechanic * * @return BusCheck */ public function setMechanic(\AppBundle\Entity\Staff $mechanic) { $this->mechanic = $mechanic; return $this; } /** * Get mechanic * * @return \AppBundle\Entity\Staff */ public function getMechanic() { return $this->mechanic; } /** * Set createdAt * * @param \DateTime $createdAt * * @return BusCheck */ public function setCreatedAt($createdAt) { $this->createdAt = $createdAt; return $this; } /** * Get createdAt * * @return \DateTime */ public function getCreatedAt() { return $this->createdAt; } }
Coded With 💗 by
0x6ick