src/Entity/RMSSaleEvent.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Criteria;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Symfony\Component\Serializer\Annotation\Groups;
  7. use Symfony\Component\Validator\Constraints as Assert;
  8. /**
  9.  * @ORM\Entity(repositoryClass="App\Repository\RMSSaleEventRepository")
  10.  *
  11.  * @ORM\Table(name="rms_sale_event")
  12.  */
  13. class RMSSaleEvent
  14. {
  15.     /**
  16.      * @ORM\Id
  17.      *
  18.      * @ORM\Column(type="string")
  19.      */
  20.     protected $id;
  21.     /**
  22.      * @param \DateTime $startDate
  23.      * @param \DateTime $endDate
  24.      */
  25.     public function __construct($saleReference/**
  26.      * @ORM\ManyToOne(targetEntity="App\Entity\ExternalSale", cascade={"remove"})
  27.      */
  28.         private $sale/**
  29.      * @ORM\Column(type="datetime", nullable=false)
  30.      */
  31.         protected $startDate/**
  32.      * @ORM\Column(type="datetime", nullable=false)
  33.      */
  34.         protected $endDate)
  35.     {
  36.         $this->id $saleReference;
  37.     }
  38.     public function getId()
  39.     {
  40.         return $this->id;
  41.     }
  42.     public function setId($id): void
  43.     {
  44.         $this->id $id;
  45.     }
  46.     public function getStartDate(): \DateTime
  47.     {
  48.         return $this->startDate;
  49.     }
  50.     public function setStartDate(\DateTime $startDate): void
  51.     {
  52.         $this->startDate $startDate;
  53.     }
  54.     public function getEndDate(): \DateTime
  55.     {
  56.         return $this->endDate;
  57.     }
  58.     public function setEndDate(\DateTime $endDate): void
  59.     {
  60.         $this->endDate $endDate;
  61.     }
  62.     public function getSale(): ExternalSale
  63.     {
  64.         return $this->sale;
  65.     }
  66.     public function setSale($sale): void
  67.     {
  68.         $this->sale $sale;
  69.     }
  70. }