src/AppBundle/MainBundle/Entity/Orders_Flexible.php line 171

Open in your IDE?
  1. <?php
  2. namespace App\AppBundle\MainBundle\Entity;
  3. use DateTime;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. use JsonSerializable;
  8. /**
  9.  * AddOns
  10.  *
  11.  * @ORM\Entity
  12.  * @ORM\Table(name="orders_flexible")
  13.  * @ORM\HasLifecycleCallbacks()
  14.  */
  15. class Orders_Flexible implements JsonSerializable
  16. {
  17.     /**
  18.      * @ORM\Column(type="integer")
  19.      * @ORM\Id
  20.      * @ORM\GeneratedValue(strategy="AUTO")
  21.      */
  22.     private $id;
  23.     /**
  24.      * @var Orders
  25.      * @ORM\ManyToOne(targetEntity="Orders", inversedBy="ordersFlexible")
  26.      * @ORM\JoinColumn(name="order_id", referencedColumnName="id")
  27.      */
  28.     private $order;
  29.     /**
  30.      * @var PS_Add_Spot
  31.      * @ORM\ManyToOne(targetEntity="PS_Add_Spot")
  32.      * @ORM\JoinColumn(name="add_spot_id", referencedColumnName="id")
  33.      */
  34.     private $add_spot;
  35.     /**
  36.      * @var DateTime
  37.      * @ORM\Column(type="date", nullable=false)
  38.      * @Assert\NotBlank()
  39.      */
  40.     private $start_date;
  41.     /**
  42.      * @var DateTime
  43.      * @ORM\Column(type="date", nullable=false)
  44.      * @Assert\NotBlank()
  45.      */
  46.     private $end_date;
  47.     /**
  48.      * @return mixed
  49.      */
  50.     public function getId()
  51.     {
  52.         return $this->id;
  53.     }
  54.     /**
  55.      * @return Orders
  56.      */
  57.     public function getOrder()
  58.     {
  59.         return $this->order;
  60.     }
  61.     /**
  62.      * @param mixed $order
  63.      */
  64.     public function setOrder($order)
  65.     {
  66.         $this->order $order;
  67.     }
  68.     /**
  69.      * @return PS_Add_Spot
  70.      */
  71.     public function getAddSpot()
  72.     {
  73.         return $this->add_spot;
  74.     }
  75.     /**
  76.      * @param mixed $add_spot
  77.      */
  78.     public function setAddSpot($add_spot)
  79.     {
  80.         $this->add_spot $add_spot;
  81.     }
  82.     /**
  83.      * @return DateTime
  84.      */
  85.     public function getStartDate()
  86.     {
  87.         return $this->start_date;
  88.     }
  89.     /**
  90.      * @param mixed $start_date
  91.      */
  92.     public function setStartDate($start_date)
  93.     {
  94.         $this->start_date $start_date;
  95.     }
  96.     /**
  97.      * @return DateTime
  98.      */
  99.     public function getEndDate()
  100.     {
  101.         return $this->end_date;
  102.     }
  103.     /**
  104.      * @param mixed $end_date
  105.      */
  106.     public function setEndDate($end_date)
  107.     {
  108.         $this->end_date $end_date;
  109.     }
  110.     public function jsonSerialize()
  111.     {
  112.         return array(
  113.             'id' => $this->id,
  114.             'start_date' => $this->start_date->format('Y-m-d H:i:s'),
  115.             'end_date' => $this->end_date->format('Y-m-d H:i:s'),
  116.         );
  117.     }
  118.     /**
  119.      * @var DateTime $created
  120.      *
  121.      * @ORM\Column(type="datetime", nullable=false)
  122.      */
  123.     protected $createdAt;
  124.     /**
  125.      * @var DateTime $updated
  126.      *
  127.      * @ORM\Column(type="datetime", nullable=false)
  128.      */
  129.     protected $updatedAt;
  130.     /**
  131.      * @return DateTime
  132.      */
  133.     public function getCreatedAt()
  134.     {
  135.         return $this->createdAt;
  136.     }
  137.     /**
  138.      * @return DateTime
  139.      */
  140.     public function getUpdatedAt()
  141.     {
  142.         return $this->updatedAt;
  143.     }
  144.     public function setUpdatedAt($updatedAt)
  145.     {
  146.         $this->updatedAt $updatedAt;
  147.         return $this;
  148.     }
  149.     /**
  150.      * @ORM\PrePersist
  151.      */
  152.     public function setCreatedAt()
  153.     {
  154.         $this->createdAt = new DateTime();
  155.         $this->updatedAt = new DateTime();
  156.         return $this;
  157.     }
  158.     /**
  159.      * @ORM\PreUpdate
  160.      */
  161.     public function setUpdatedAtValue() {
  162.         $this->updatedAt = new DateTime();
  163.     }
  164.     public function __construct() {
  165.     }
  166. }