src/AppBundle/MainBundle/Entity/PS_Add_Spot_UnAvailability.php line 138

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: apple
  5.  * Date: 29/03/19
  6.  * Time: 3:08 PM
  7.  */
  8. namespace App\AppBundle\MainBundle\Entity;
  9. use Doctrine\ORM\Mapping as ORM;
  10. use Symfony\Component\Validator\Constraints as Assert;
  11. use JsonSerializable;
  12. /**
  13.  * AddOns
  14.  *
  15.  * @ORM\Entity
  16.  * @ORM\Table(name="ps_add_spot_unavailability")
  17.  * @ORM\HasLifecycleCallbacks()
  18.  */
  19. class PS_Add_Spot_UnAvailability implements JsonSerializable
  20. {
  21.     /**
  22.      * @ORM\Column(type="integer")
  23.      * @ORM\Id
  24.      * @ORM\GeneratedValue(strategy="AUTO")
  25.      */
  26.     private $id;
  27.     /**
  28.      * @ORM\Column(type="string", nullable=false)
  29.      * @Assert\NotBlank()
  30.      */
  31.     private $title;
  32.     /**
  33.      * @ORM\Column(type="datetime", nullable=false)
  34.      * @Assert\NotBlank()
  35.      */
  36.     private $start_date_time;
  37.     /**
  38.      * @ORM\Column(type="datetime", nullable=false)
  39.      * @Assert\NotBlank()
  40.      */
  41.     private $end_date_time;
  42.     /**
  43.      * Many features have one product. This is the owning side.
  44.      * @ORM\ManyToOne(targetEntity="PS_Add_Spot", inversedBy="ps_add_spot_special_days")
  45.      * @ORM\JoinColumn(name="ps_add_spot_id", referencedColumnName="id")
  46.      */
  47.     private $ps_add_spot;
  48.     /**
  49.      * @return mixed
  50.      */
  51.     public function getId()
  52.     {
  53.         return $this->id;
  54.     }
  55.     /**
  56.      * @return mixed
  57.      */
  58.     public function getTitle()
  59.     {
  60.         return $this->title;
  61.     }
  62.     /**
  63.      * @param mixed $title
  64.      */
  65.     public function setTitle($title)
  66.     {
  67.         $this->title $title;
  68.     }
  69.     /**
  70.      * @return mixed
  71.      */
  72.     public function getStartDateTime()
  73.     {
  74.         return $this->start_date_time;
  75.     }
  76.     /**
  77.      * @param mixed $start_date_time
  78.      */
  79.     public function setStartDateTime($start_date_time)
  80.     {
  81.         $this->start_date_time $start_date_time;
  82.     }
  83.     /**
  84.      * @return mixed
  85.      */
  86.     public function getEndDateTime()
  87.     {
  88.         return $this->end_date_time;
  89.     }
  90.     /**
  91.      * @param mixed $end_date_time
  92.      */
  93.     public function setEndDateTime($end_date_time)
  94.     {
  95.         $this->end_date_time $end_date_time;
  96.     }
  97.     /**
  98.      * @return mixed
  99.      */
  100.     public function getPsAddSpot()
  101.     {
  102.         return $this->ps_add_spot;
  103.     }
  104.     /**
  105.      * @param mixed $ps_add_spot
  106.      */
  107.     public function setPsAddSpot($ps_add_spot)
  108.     {
  109.         $this->ps_add_spot $ps_add_spot;
  110.     }
  111.     public function jsonSerialize()
  112.     {
  113.         return array(
  114.             'id' => $this->id,
  115.         );
  116.     }
  117.     /**
  118.      * @var string $created
  119.      *
  120.      * @ORM\Column(name="created_at", type="string", nullable=false)
  121.      */
  122.     protected $createdAt;
  123.     /**
  124.      * @var string $updated
  125.      *
  126.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  127.      */
  128.     protected $updatedAt;
  129.     public function getCreatedAt()
  130.     {
  131.         return $this->createdAt;
  132.     }
  133.     public function setCreatedAt($createdAt)
  134.     {
  135.         $this->createdAt $createdAt;
  136.         return $this;
  137.     }
  138.     public function getUpdatedAt()
  139.     {
  140.         return $this->updatedAt;
  141.     }
  142.     public function setUpdatedAt($updatedAt)
  143.     {
  144.         $this->updatedAt $updatedAt;
  145.         return $this;
  146.     }
  147.     /**
  148.      * @ORM\PrePersist
  149.      * @ORM\PreUpdate
  150.      */
  151.     public function updatedTimestamps()
  152.     {
  153.         $this->setUpdatedAt(round(microtime(true) * 1000));
  154.         if ($this->getCreatedAt() === null) {
  155.             $this->setCreatedAt(round(microtime(true) * 1000));
  156.         }
  157.     }
  158.     public function __construct()
  159.     {
  160.         $this->setCreatedAt(round(microtime(true) * 1000));
  161.     }
  162. }