src/AppBundle/MainBundle/Entity/PS_Add_Spot_Pricing_Custom_Price.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_pricing_custom_price")
  17.  * @ORM\HasLifecycleCallbacks()
  18.  */
  19. class PS_Add_Spot_Pricing_Custom_Price 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="time", nullable=true)
  29.      * @Assert\NotBlank()
  30.      */
  31.     private $start_time;
  32.     /**
  33.      * @ORM\Column(type="time", nullable=true)
  34.      * @Assert\NotBlank()
  35.      */
  36.     private $end_time;
  37.     /**
  38.      * @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
  39.      * @Assert\NotBlank()
  40.      */
  41.     private $hourly_rate;
  42.     /**
  43.      * Many features have one product. This is the owning side.
  44.      * @ORM\ManyToOne(targetEntity="PS_Add_Spot_Pricing_Custom", inversedBy="ps_add_spot_pricing_custom_prices")
  45.      * @ORM\JoinColumn(name="ps_add_spot_pricing_custom_id", referencedColumnName="id", onDelete="SET NULL")
  46.      */
  47.     private $ps_add_spot_pricing_custom;
  48.     /**
  49.      * @return mixed
  50.      */
  51.     public function getId()
  52.     {
  53.         return $this->id;
  54.     }
  55.     /**
  56.      * @return \DateTime
  57.      */
  58.     public function getStartTime()
  59.     {
  60.         return $this->start_time;
  61.     }
  62.     /**
  63.      * @param mixed $start_time
  64.      */
  65.     public function setStartTime($start_time)
  66.     {
  67.         $this->start_time $start_time;
  68.     }
  69.     /**
  70.      * @return \DateTime
  71.      */
  72.     public function getEndTime()
  73.     {
  74.         return $this->end_time;
  75.     }
  76.     /**
  77.      * @param mixed $end_time
  78.      */
  79.     public function setEndTime($end_time)
  80.     {
  81.         $this->end_time $end_time;
  82.     }
  83.     /**
  84.      * @return mixed
  85.      */
  86.     public function getHourlyRate()
  87.     {
  88.         return $this->hourly_rate;
  89.     }
  90.     /**
  91.      * @param mixed $hourly_rate
  92.      */
  93.     public function setHourlyRate($hourly_rate)
  94.     {
  95.         $this->hourly_rate $hourly_rate;
  96.     }
  97.     /**
  98.      * @return mixed
  99.      */
  100.     public function getPsAddSpotPricingCustom()
  101.     {
  102.         return $this->ps_add_spot_pricing_custom;
  103.     }
  104.     /**
  105.      * @param mixed $ps_add_spot_pricing_custom
  106.      */
  107.     public function setPsAddSpotPricingCustom($ps_add_spot_pricing_custom)
  108.     {
  109.         $this->ps_add_spot_pricing_custom $ps_add_spot_pricing_custom;
  110.     }
  111.     public function jsonSerialize()
  112.     {
  113.         return array(
  114.             'id' => $this->id,
  115.             'hourly_rate' => $this->hourly_rate,
  116.             'start_time' => $this->start_time,
  117.             'end_time' => $this->end_time,
  118.         );
  119.     }
  120.     /**
  121.      * @var string $created
  122.      *
  123.      * @ORM\Column(name="created_at", type="string", nullable=false)
  124.      */
  125.     protected $createdAt;
  126.     /**
  127.      * @var string $updated
  128.      *
  129.      * @ORM\Column(name="updated_at", type="string", nullable=false)
  130.      */
  131.     protected $updatedAt;
  132.     public function getCreatedAt()
  133.     {
  134.         return $this->createdAt;
  135.     }
  136.     public function setCreatedAt($createdAt)
  137.     {
  138.         $this->createdAt $createdAt;
  139.         return $this;
  140.     }
  141.     public function getUpdatedAt()
  142.     {
  143.         return $this->updatedAt;
  144.     }
  145.     public function setUpdatedAt($updatedAt)
  146.     {
  147.         $this->updatedAt $updatedAt;
  148.         return $this;
  149.     }
  150.     /**
  151.      * @ORM\PrePersist
  152.      * @ORM\PreUpdate
  153.      */
  154.     public function updatedTimestamps()
  155.     {
  156.         $this->setUpdatedAt(round(microtime(true) * 1000));
  157.         if ($this->getCreatedAt() === null) {
  158.             $this->setCreatedAt(round(microtime(true) * 1000));
  159.         }
  160.     }
  161.     public function __construct() {
  162.         $this->setCreatedAt(round(microtime(true) * 1000));
  163.     }
  164. }