src/AppBundle/MainBundle/Entity/PS_Add_Spot_Loc_Detail_Amenities.php line 116

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_loc_detail_amenities")
  17.  * @ORM\HasLifecycleCallbacks()
  18.  */
  19. class PS_Add_Spot_Loc_Detail_Amenities implements JsonSerializable
  20. {
  21.     /**
  22.      * @ORM\Column(type="integer")
  23.      * @ORM\Id
  24.      * @ORM\GeneratedValue(strategy="AUTO")
  25.      */
  26.     private $id;
  27.     /**
  28.      * Many features have one product. This is the owning side.
  29.      * @ORM\ManyToOne(targetEntity="Ps_Add_Spot_Loc_Detail", inversedBy="ps_add_spot_loc_detail_amenities")
  30.      * @ORM\JoinColumn(name="ps_add_spot_loc_detail_id", referencedColumnName="id")
  31.      */
  32.     private $ps_add_spot_loc_detail;
  33.     /**
  34.      * @ORM\ManyToOne(targetEntity="WP_Amenities")
  35.      * @ORM\JoinColumn(name="wp_amenities_id", referencedColumnName="id")
  36.      */
  37.     private $wp_amenities;
  38.     /**
  39.      * @ORM\Column(type="boolean", nullable=false)
  40.      * @Assert\NotBlank()
  41.      */
  42.     private $status;
  43.     /**
  44.      * @return mixed
  45.      */
  46.     public function getId()
  47.     {
  48.         return $this->id;
  49.     }
  50.     /**
  51.      * @return mixed
  52.      */
  53.     public function getPsAddSpotLocDetail()
  54.     {
  55.         return $this->ps_add_spot_loc_detail;
  56.     }
  57.     /**
  58.      * @param mixed $ps_add_spot_loc_detail
  59.      */
  60.     public function setPsAddSpotLocDetail($ps_add_spot_loc_detail)
  61.     {
  62.         $this->ps_add_spot_loc_detail $ps_add_spot_loc_detail;
  63.     }
  64.     /**
  65.      * @return mixed
  66.      */
  67.     public function getWpAmenities()
  68.     {
  69.         return $this->wp_amenities;
  70.     }
  71.     /**
  72.      * @param mixed $wp_amenities
  73.      */
  74.     public function setWpAmenities($wp_amenities)
  75.     {
  76.         $this->wp_amenities $wp_amenities;
  77.     }
  78.     /**
  79.      * @return mixed
  80.      */
  81.     public function getStatus()
  82.     {
  83.         return $this->status;
  84.     }
  85.     /**
  86.      * @param mixed $status
  87.      */
  88.     public function setStatus($status)
  89.     {
  90.         $this->status $status;
  91.     }
  92.     public function jsonSerialize()
  93.     {
  94.         return array(
  95.             'id' => $this->id,
  96.         );
  97.     }
  98.     /**
  99.      * @var string $created
  100.      *
  101.      * @ORM\Column(name="created_at", type="string", nullable=false)
  102.      */
  103.     protected $createdAt;
  104.     /**
  105.      * @var string $updated
  106.      *
  107.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  108.      */
  109.     protected $updatedAt;
  110.     public function getCreatedAt()
  111.     {
  112.         return $this->createdAt;
  113.     }
  114.     public function setCreatedAt($createdAt)
  115.     {
  116.         $this->createdAt $createdAt;
  117.         return $this;
  118.     }
  119.     public function getUpdatedAt()
  120.     {
  121.         return $this->updatedAt;
  122.     }
  123.     public function setUpdatedAt($updatedAt)
  124.     {
  125.         $this->updatedAt $updatedAt;
  126.         return $this;
  127.     }
  128.     /**
  129.      * @ORM\PrePersist
  130.      * @ORM\PreUpdate
  131.      */
  132.     public function updatedTimestamps()
  133.     {
  134.         $this->setUpdatedAt(round(microtime(true) * 1000));
  135.         if ($this->getCreatedAt() === null) {
  136.             $this->setCreatedAt(round(microtime(true) * 1000));
  137.         }
  138.     }
  139.     public function __construct() {
  140.         $this->setCreatedAt(round(microtime(true) * 1000));
  141.     }
  142. }