src/Entity/Station.php line 21

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: parcel
  5.  * Date: 8/24/18
  6.  * Time: 7:45 PM
  7.  */
  8. namespace App\Entity;
  9. use Doctrine\ORM\Mapping as ORM;
  10. use JMS\Serializer\Annotation as Serializer;
  11. use Symfony\Component\Serializer\Annotation\Ignore;
  12. use Symfony\Component\Validator\Constraints as Assert;
  13. /**
  14.  * @ORM\Entity(repositoryClass="App\Repository\StationRepository")
  15.  * @ORM\Table(name="station")
  16.  */
  17. class Station {
  18.     /**
  19.      * @ORM\Id
  20.      * @ORM\GeneratedValue(strategy="IDENTITY")
  21.      * @ORM\Column(type="integer")
  22.      */
  23.     private $id;
  24.     /**
  25.      * @Assert\NotBlank(message="Please Enter the station name")
  26.      * @ORM\Column(type="string")
  27.      */
  28.     private $stationName;
  29.     /**
  30.      * @Assert\NotBlank(message="Please Enter the station name")
  31.      * @ORM\Column(type="text")
  32.      */
  33.     private $stationAddress;
  34.     //@Assert\NotBlank(message="Please Enter the phone numbers")
  35.     /**
  36.      * @ORM\Column(type="text", nullable=true)
  37.      */
  38.     private $phone_numbers;
  39.     /**
  40.      * @Ignore
  41.      * @var \App\Entity\Organization
  42.      * @Serializer\Type("App\Entity\Organization")
  43.      * @ORM\ManyToOne(targetEntity="App\Entity\Organization")
  44.      * @ORM\JoinColumns({
  45.      *   @ORM\JoinColumn(name="organization_id", referencedColumnName="id")
  46.      * })
  47.      */
  48.     private $organization;
  49.     /**
  50.      * @Serializer\Type("DateTime<'d/m/Y'>")
  51.      * @ORM\Column(type="datetime")
  52.      */
  53.     private $createdAt;
  54.     /**
  55.      * @ORM\Column(type="string")
  56.      */
  57.     private $operatingHrs;
  58.     /**
  59.      * @Ignore
  60.      * @var User
  61.      * @Serializer\Type("App\Entity\User")
  62.      * @ORM\ManyToOne(targetEntity="App\Entity\User")
  63.      * @ORM\JoinColumns({
  64.      *   @ORM\JoinColumn(name="created_by", referencedColumnName="id")
  65.      * })
  66.      */
  67.     private $createdBy;
  68.     /**
  69.      * @ORM\Column(type="boolean")
  70.      */
  71.     private $isMobile;
  72.     /**
  73.      * @ORM\Column(type="boolean")
  74.      */
  75.     private $isActive;
  76.     /**
  77.      * @return mixed
  78.      */
  79.     public function getId()
  80.     {
  81.         return $this->id;
  82.     }
  83.     /**
  84.      * @param mixed $id
  85.      */
  86.     public function setId($id)
  87.     {
  88.         $this->id $id;
  89.     }
  90.     /**
  91.      * @return mixed
  92.      */
  93.     public function getStationName()
  94.     {
  95.         return $this->stationName;
  96.     }
  97.     /**
  98.      * @param mixed $stationName
  99.      */
  100.     public function setStationName($stationName)
  101.     {
  102.         $this->stationName $stationName;
  103.     }
  104.     /**
  105.      * @return mixed
  106.      */
  107.     public function getStationAddress()
  108.     {
  109.         return $this->stationAddress;
  110.     }
  111.     /**
  112.      * @param mixed $stationAddress
  113.      */
  114.     public function setStationAddress($stationAddress)
  115.     {
  116.         $this->stationAddress $stationAddress;
  117.     }
  118.     /**
  119.      * @return mixed
  120.      */
  121.     public function getPhoneNumbers()
  122.     {
  123.         return $this->phone_numbers;
  124.     }
  125.     /**
  126.      * @param mixed $phone_numbers
  127.      */
  128.     public function setPhoneNumbers($phone_numbers)
  129.     {
  130.         $this->phone_numbers $phone_numbers;
  131.     }
  132.     /**
  133.      * @return Organization
  134.      */
  135.     public function getOrganization()
  136.     {
  137.         return $this->organization;
  138.     }
  139.     /**
  140.      * @param Organization $organization
  141.      */
  142.     public function setOrganization($organization)
  143.     {
  144.         $this->organization $organization;
  145.     }
  146.     /**
  147.      * @return mixed
  148.      */
  149.     public function getCreatedAt()
  150.     {
  151.         return $this->createdAt;
  152.     }
  153.     /**
  154.      * @param mixed $createdAt
  155.      */
  156.     public function setCreatedAt($createdAt)
  157.     {
  158.         $this->createdAt $createdAt;
  159.     }
  160.     /**
  161.      * @return User
  162.      */
  163.     public function getCreatedBy()
  164.     {
  165.         return $this->createdBy;
  166.     }
  167.     /**
  168.      * @param User $createdBy
  169.      */
  170.     public function setCreatedBy($createdBy)
  171.     {
  172.         $this->createdBy $createdBy;
  173.     }
  174.     /**
  175.      * @return mixed
  176.      */
  177.     public function getOperatingHrs()
  178.     {
  179.         return $this->operatingHrs;
  180.     }
  181.     /**
  182.      * @param mixed $operatingHrs
  183.      */
  184.     public function setOperatingHrs($operatingHrs): void
  185.     {
  186.         $this->operatingHrs $operatingHrs;
  187.     }
  188.     /**
  189.      * @return mixed
  190.      */
  191.     public function getIsMobile()
  192.     {
  193.         return $this->isMobile;
  194.     }
  195.     /**
  196.      * @param mixed $isMobile
  197.      */
  198.     public function setIsMobile(mixed $isMobile): void
  199.     {
  200.         $this->isMobile $isMobile;
  201.     }
  202.     /**
  203.      * @return mixed
  204.      */
  205.     public function getIsActive()
  206.     {
  207.         return $this-isActive;
  208.     }
  209.     /**
  210.      * @param mixed $isActive
  211.      */
  212.     public function setIsActive(mixed $isActive): void
  213.     {
  214.         $this->isActive $isActive;
  215.     }
  216.     public function __toString()
  217.     {
  218.         // TODO: Implement __toString() method.
  219.         return $this->stationName;
  220.     }
  221. }