src/AppBundle/MainBundle/Entity/PS_Add_Spot_Pricing_Monthly_Booking.php line 74

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_pricing_monthly_booking")
  17.  * @ORM\HasLifecycleCallbacks()
  18.  */
  19. class PS_Add_Spot_Pricing_Monthly_Booking 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="decimal", precision=10, scale=2)
  29.      * @Assert\NotBlank()
  30.      */
  31.     private $monthly_rate;
  32.     /**
  33.      * @return mixed
  34.      */
  35.     public function getId()
  36.     {
  37.         return $this->id;
  38.     }
  39.     /**
  40.      * @return mixed
  41.      */
  42.     public function getMonthlyRate()
  43.     {
  44.         return $this->monthly_rate;
  45.     }
  46.     /**
  47.      * @param mixed $monthly_rate
  48.      */
  49.     public function setMonthlyRate($monthly_rate)
  50.     {
  51.         $this->monthly_rate $monthly_rate;
  52.     }
  53.     public function jsonSerialize()
  54.     {
  55.         return array(
  56.             'id' => $this->id,
  57.         );
  58.     }
  59.     /**
  60.      * @var string $created
  61.      *
  62.      * @ORM\Column(name="created_at", type="string", nullable=false)
  63.      */
  64.     protected $createdAt;
  65.     /**
  66.      * @var string $updated
  67.      *
  68.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  69.      */
  70.     protected $updatedAt;
  71.     public function getCreatedAt()
  72.     {
  73.         return $this->createdAt;
  74.     }
  75.     public function setCreatedAt($createdAt)
  76.     {
  77.         $this->createdAt $createdAt;
  78.         return $this;
  79.     }
  80.     public function getUpdatedAt()
  81.     {
  82.         return $this->updatedAt;
  83.     }
  84.     public function setUpdatedAt($updatedAt)
  85.     {
  86.         $this->updatedAt $updatedAt;
  87.         return $this;
  88.     }
  89.     /**
  90.      * @ORM\PrePersist
  91.      * @ORM\PreUpdate
  92.      */
  93.     public function updatedTimestamps()
  94.     {
  95.         $this->setUpdatedAt(round(microtime(true) * 1000));
  96.         if ($this->getCreatedAt() === null) {
  97.             $this->setCreatedAt(round(microtime(true) * 1000));
  98.         }
  99.     }
  100.     public function __construct() {
  101.         $this->setCreatedAt(round(microtime(true) * 1000));
  102.     }
  103. }