src/MDS/GreenPatioBundle/Entity/ReservationMailAlertClient.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\MDS\GreenPatioBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * ReservationMailAlertClient
  6.  *
  7.  * @ORM\Table(name="reservation_mail_alert_client")
  8.  * @ORM\Entity(repositoryClass="App\MDS\GreenPatioBundle\Repository\ReservationMailAlertClientRepository")
  9.  * @ORM\HasLifecycleCallbacks()
  10.  */
  11. class ReservationMailAlertClient
  12. {
  13.     /**
  14.      * @var int
  15.      *
  16.      * @ORM\Column(name="id", type="integer")
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue(strategy="AUTO")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @var int
  23.      *
  24.      * @ORM\Column(name="reservationId", type="integer", nullable=true)
  25.      */
  26.     private $reservationId;
  27.     /**
  28.      * @var int
  29.      *
  30.      * @ORM\Column(name="agentId", type="integer", nullable=true)
  31.      */
  32.     private $agentId;
  33.     /**
  34.      * @var string
  35.      *
  36.      * @ORM\Column(name="agentMail", type="string", length=255, nullable=true)
  37.      */
  38.     private $agentMail;
  39.     /**
  40.      * @var int
  41.      *
  42.      * @ORM\Column(name="clientId", type="integer", nullable=true)
  43.      */
  44.     private $clientId;
  45.     /**
  46.      * @var string
  47.      *
  48.      * @ORM\Column(name="clientMail", type="string", length=255, nullable=true)
  49.      */
  50.     private $clientMail;
  51.     /**
  52.      * @var \DateTime
  53.      *
  54.      * @ORM\Column(name="alertDateTime", type="datetime")
  55.      */
  56.     private $alertDateTime;
  57.     /**
  58.      * @var bool
  59.      *
  60.      * @ORM\Column(name="alertSended", type="boolean", nullable=true)
  61.      */
  62.     private $alertSended;
  63.     /**
  64.      * @var \DateTime
  65.      *
  66.      * @ORM\Column(name="cancelDateTime", type="datetime")
  67.      */
  68.     private $cancelDateTime;
  69.     /**
  70.      * @var bool
  71.      *
  72.      * @ORM\Column(name="cancelSended", type="boolean", nullable=true)
  73.      */
  74.     private $cancelSended;
  75.     /**
  76.      * @var \DateTime
  77.      *
  78.      * @ORM\Column(name="created_at", type="datetime")
  79.      */
  80.     private $createdAt;
  81.     /**
  82.      * @var int
  83.      *
  84.      * @ORM\Column(name="created_id", type="integer", nullable=true)
  85.      */
  86.     private $createdId;
  87.     /**
  88.      * @var int
  89.      *
  90.      * @ORM\Column(name="oldReservationId", type="integer", nullable=true)
  91.      */
  92.     private $oldReservationId;
  93.     /**
  94.      * Get id
  95.      *
  96.      * @return int
  97.      */
  98.     public function getId()
  99.     {
  100.         return $this->id;
  101.     }
  102.     /**
  103.      * Set reservationId
  104.      *
  105.      * @param integer $reservationId
  106.      *
  107.      * @return ReservationMailAlertClient
  108.      */
  109.     public function setReservationId($reservationId)
  110.     {
  111.         $this->reservationId $reservationId;
  112.         return $this;
  113.     }
  114.     /**
  115.      * Get reservationId
  116.      *
  117.      * @return integer
  118.      */
  119.     public function getReservationId()
  120.     {
  121.         return $this->reservationId;
  122.     }
  123.     /**
  124.      * Set agentId
  125.      *
  126.      * @param integer $agentId
  127.      *
  128.      * @return ReservationMailAlertClient
  129.      */
  130.     public function setAgentId($agentId)
  131.     {
  132.         $this->agentId $agentId;
  133.         return $this;
  134.     }
  135.     /**
  136.      * Get agentId
  137.      *
  138.      * @return integer
  139.      */
  140.     public function getAgentId()
  141.     {
  142.         return $this->agentId;
  143.     }
  144.     /**
  145.      * Set agentMail
  146.      *
  147.      * @param string $agentMail
  148.      *
  149.      * @return ReservationMailAlertClient
  150.      */
  151.     public function setAgentMail($agentMail)
  152.     {
  153.         $this->agentMail $agentMail;
  154.         return $this;
  155.     }
  156.     /**
  157.      * Get agentMail
  158.      *
  159.      * @return string
  160.      */
  161.     public function getAgentMail()
  162.     {
  163.         return $this->agentMail;
  164.     }
  165.     /**
  166.      * Set clientId
  167.      *
  168.      * @param integer $clientId
  169.      *
  170.      * @return ReservationMailAlertClient
  171.      */
  172.     public function setClientId($clientId)
  173.     {
  174.         $this->clientId $clientId;
  175.         return $this;
  176.     }
  177.     /**
  178.      * Get clientId
  179.      *
  180.      * @return integer
  181.      */
  182.     public function getClientId()
  183.     {
  184.         return $this->clientId;
  185.     }
  186.     /**
  187.      * Set clientMail
  188.      *
  189.      * @param string $clientMail
  190.      *
  191.      * @return ReservationMailAlertClient
  192.      */
  193.     public function setClientMail($clientMail)
  194.     {
  195.         $this->clientMail $clientMail;
  196.         return $this;
  197.     }
  198.     /**
  199.      * Get clientMail
  200.      *
  201.      * @return string
  202.      */
  203.     public function getClientMail()
  204.     {
  205.         return $this->clientMail;
  206.     }
  207.     /**
  208.      * Set alertDateTime
  209.      *
  210.      * @param \DateTime $alertDateTime
  211.      *
  212.      * @return ReservationMailAlertClient
  213.      */
  214.     public function setAlertDateTime($alertDateTime)
  215.     {
  216.         $this->alertDateTime $alertDateTime;
  217.         return $this;
  218.     }
  219.     /**
  220.      * Get alertDateTime
  221.      *
  222.      * @return \DateTime
  223.      */
  224.     public function getAlertDateTime()
  225.     {
  226.         return $this->alertDateTime;
  227.     }
  228.     /**
  229.      * Set alertSended
  230.      *
  231.      * @param boolean $alertSended
  232.      *
  233.      * @return ReservationMailAlertClient
  234.      */
  235.     public function setAlertSended($alertSended)
  236.     {
  237.         $this->alertSended $alertSended;
  238.         return $this;
  239.     }
  240.     /**
  241.      * Get alertSended
  242.      *
  243.      * @return boolean
  244.      */
  245.     public function getAlertSended()
  246.     {
  247.         return $this->alertSended;
  248.     }
  249.     /**
  250.      * Set cancelDateTime
  251.      *
  252.      * @param \DateTime $cancelDateTime
  253.      *
  254.      * @return ReservationMailAlertClient
  255.      */
  256.     public function setCancelDateTime($cancelDateTime)
  257.     {
  258.         $this->cancelDateTime $cancelDateTime;
  259.         return $this;
  260.     }
  261.     /**
  262.      * Get cancelDateTime
  263.      *
  264.      * @return \DateTime
  265.      */
  266.     public function getCancelDateTime()
  267.     {
  268.         return $this->cancelDateTime;
  269.     }
  270.     /**
  271.      * Set cancelSended
  272.      *
  273.      * @param boolean $cancelSended
  274.      *
  275.      * @return ReservationMailAlertClient
  276.      */
  277.     public function setCancelSended($cancelSended)
  278.     {
  279.         $this->cancelSended $cancelSended;
  280.         return $this;
  281.     }
  282.     /**
  283.      * Get cancelSended
  284.      *
  285.      * @return boolean
  286.      */
  287.     public function getCancelSended()
  288.     {
  289.         return $this->cancelSended;
  290.     }
  291.     /**
  292.      * Set createdAt
  293.      *
  294.      * @param \DateTime $createdAt
  295.      *
  296.      * @return ReservationMailAlertClient
  297.      */
  298.     public function setCreatedAt($createdAt)
  299.     {
  300.         $this->createdAt $createdAt;
  301.         return $this;
  302.     }
  303.     /**
  304.      * Get createdAt
  305.      *
  306.      * @return \DateTime
  307.      */
  308.     public function getCreatedAt()
  309.     {
  310.         return $this->createdAt;
  311.     }
  312.     /**
  313.      * Set createdId
  314.      *
  315.      * @param integer $createdId
  316.      *
  317.      * @return ReservationMailAlertClient
  318.      */
  319.     public function setCreatedId($createdId)
  320.     {
  321.         $this->createdId $createdId;
  322.         return $this;
  323.     }
  324.     /**
  325.      * Get createdId
  326.      *
  327.      * @return integer
  328.      */
  329.     public function getCreatedId()
  330.     {
  331.         return $this->createdId;
  332.     }
  333.     /**
  334.      * @ORM\PrePersist
  335.      */
  336.     public function setCreatedAtValue()
  337.     {
  338.         $this->createdAt = new \Datetime();
  339.     }
  340.     /**
  341.      * Set oldReservationId
  342.      *
  343.      * @param integer $oldReservationId
  344.      *
  345.      * @return ReservationMailAlertClient
  346.      */
  347.     public function setOldReservationId($oldReservationId)
  348.     {
  349.         $this->oldReservationId $oldReservationId;
  350.         return $this;
  351.     }
  352.     /**
  353.      * Get oldReservationId
  354.      *
  355.      * @return integer
  356.      */
  357.     public function getOldReservationId()
  358.     {
  359.         return $this->oldReservationId;
  360.     }
  361. }