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

Open in your IDE?
  1. <?php
  2. namespace App\AppBundle\MainBundle\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. use JsonSerializable;
  7. /**
  8.  * AddOns
  9.  *
  10.  * @ORM\Entity
  11.  * @ORM\Table(name="ps_my_spots")
  12.  * @ORM\HasLifecycleCallbacks()
  13.  */
  14. class PS_My_Spots implements JsonSerializable
  15. {
  16.     /**
  17.      * @ORM\Column(type="integer")
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="AUTO")
  20.      */
  21.     private $id;
  22.     /**
  23.      * Many Token have one user. This is the owning side.
  24.      * @ORM\ManyToOne(targetEntity="User", inversedBy="add_spot")
  25.      * @ORM\JoinColumn(name="user_id", referencedColumnName="id")
  26.      */
  27.     private $user;
  28.     /**
  29.      * One Product has One Shipment.
  30.      * @ORM\OneToOne(targetEntity="PS_Add_Spot")
  31.      * @ORM\JoinColumn(name="ps_add_spot_id", referencedColumnName="id")
  32.      */
  33.     private $ps_add_spot;
  34.     /**
  35.      * @ORM\Column(type="boolean", nullable=true, options={"default" : 0})
  36.      * @Assert\NotBlank()
  37.      */
  38.     private $is_active;
  39.     /**
  40.      * @return mixed
  41.      */
  42.     public function getId()
  43.     {
  44.         return $this->id;
  45.     }
  46.     /**
  47.      * @return mixed
  48.      */
  49.     public function getUser()
  50.     {
  51.         return $this->user;
  52.     }
  53.     /**
  54.      * @param mixed $user
  55.      */
  56.     public function setUser($user)
  57.     {
  58.         $this->user $user;
  59.     }
  60.     /**
  61.      * @return mixed
  62.      */
  63.     public function getIsActive()
  64.     {
  65.         return $this->is_active;
  66.     }
  67.     /**
  68.      * @param mixed $is_active
  69.      */
  70.     public function setIsActive($is_active)
  71.     {
  72.         $this->is_active $is_active;
  73.     }
  74.     /**
  75.      * @return PS_Add_Spot
  76.      */
  77.     public function getPsAddSpot()
  78.     {
  79.         return $this->ps_add_spot;
  80.     }
  81.     /**
  82.      * @param mixed $ps_add_spot
  83.      */
  84.     public function setPsAddSpot($ps_add_spot)
  85.     {
  86.         $this->ps_add_spot $ps_add_spot;
  87.     }
  88.     public function jsonSerialize()
  89.     {
  90.         return array(
  91.             'id' => $this->id,
  92.         );
  93.     }
  94.     /**
  95.      * @var string $created
  96.      *
  97.      * @ORM\Column(name="created_at", type="string", nullable=false)
  98.      */
  99.     protected $createdAt;
  100.     /**
  101.      * @var string $updated
  102.      *
  103.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  104.      */
  105.     protected $updatedAt;
  106.     public function getCreatedAt()
  107.     {
  108.         return $this->createdAt;
  109.     }
  110.     public function setCreatedAt($createdAt)
  111.     {
  112.         $this->createdAt $createdAt;
  113.         return $this;
  114.     }
  115.     public function getUpdatedAt()
  116.     {
  117.         return $this->updatedAt;
  118.     }
  119.     public function setUpdatedAt($updatedAt)
  120.     {
  121.         $this->updatedAt $updatedAt;
  122.         return $this;
  123.     }
  124.     /**
  125.      * @ORM\PrePersist
  126.      * @ORM\PreUpdate
  127.      */
  128.     public function updatedTimestamps()
  129.     {
  130.         $this->setUpdatedAt(round(microtime(true) * 1000));
  131.         if ($this->getCreatedAt() === null) {
  132.             $this->setCreatedAt(round(microtime(true) * 1000));
  133.         }
  134.     }
  135.     public function __construct() {
  136.         $this->setCreatedAt(round(microtime(true) * 1000));
  137.     }
  138. }