src/Entity/MafoId/MafoAffiliates.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity\MafoId;
  3. use Doctrine\DBAL\Types\Types;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass="App\Repository\MafoAffiliatesRepository")
  7.  * @ORM\Table
  8.  */
  9. class MafoAffiliates
  10. {
  11.     /**
  12.      * @ORM\Column(type="integer")
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue(strategy="AUTO")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\Column(type="string", nullable=false)
  19.      */
  20.     private $name;
  21.     /**
  22.      * @ORM\Column(type="string", nullable=false)
  23.      */
  24.     private $accountManagerEmail;
  25.     /**
  26.      * @ORM\Column(type="string", nullable=true)
  27.      */
  28.     private $salesManagerEmail;
  29.     /**
  30.      * @ORM\Column(type="string", nullable=true)
  31.      */
  32.     private $updatedByEmail;
  33.     /**
  34.      * @ORM\Column(type="string", nullable=true)
  35.      */
  36.     private $status;
  37.     /**
  38.      * @ORM\Column(type="integer", nullable=true)
  39.      */
  40.     private $partnerPaymentDueDate;
  41.     /**
  42.      * @ORM\Column(type="datetime")
  43.      */
  44.     private $dateUpdated;
  45.     /**
  46.      * @ORM\Column(type="datetime")
  47.      */
  48.     private $dateInserted;
  49.     public function getId(): ?int
  50.     {
  51.         return $this->id;
  52.     }
  53.     public function getName(): ?string
  54.     {
  55.         return $this->name;
  56.     }
  57.     public function setName(string $name): self
  58.     {
  59.         $this->name $name;
  60.         return $this;
  61.     }
  62.     public function getDateUpdated(): ?\DateTimeInterface
  63.     {
  64.         return $this->dateUpdated;
  65.     }
  66.     public function setDateUpdated(\DateTimeInterface $dateUpdated): self
  67.     {
  68.         $this->dateUpdated $dateUpdated;
  69.         return $this;
  70.     }
  71.     public function getDateInserted(): ?\DateTimeInterface
  72.     {
  73.         return $this->dateInserted;
  74.     }
  75.     public function setDateInserted(\DateTimeInterface $dateInserted): self
  76.     {
  77.         $this->dateInserted $dateInserted;
  78.         return $this;
  79.     }
  80.     public function getAccountManagerEmail(): ?string
  81.     {
  82.         return $this->accountManagerEmail;
  83.     }
  84.     public function setAccountManagerEmail(string $accountManagerEmail): static
  85.     {
  86.         $this->accountManagerEmail $accountManagerEmail;
  87.         return $this;
  88.     }
  89.     public function getSalesManagerEmail(): ?string
  90.     {
  91.         return $this->salesManagerEmail;
  92.     }
  93.     public function setSalesManagerEmail(?string $salesManagerEmail): static
  94.     {
  95.         $this->salesManagerEmail $salesManagerEmail;
  96.         return $this;
  97.     }
  98.     public function getUpdatedByEmail(): ?string
  99.     {
  100.         return $this->updatedByEmail;
  101.     }
  102.     public function setUpdatedByEmail(?string $updatedByEmail): static
  103.     {
  104.         $this->updatedByEmail $updatedByEmail;
  105.         return $this;
  106.     }
  107.     public function getStatus(): ?string
  108.     {
  109.         return $this->status;
  110.     }
  111.     public function setStatus(?string $status): static
  112.     {
  113.         $this->status $status;
  114.         return $this;
  115.     }
  116.     public function getPartnerPaymentDueDate(): ?int
  117.     {
  118.         return $this->partnerPaymentDueDate;
  119.     }
  120.     public function setPartnerPaymentDueDate(?int $partnerPaymentDueDate): static
  121.     {
  122.         $this->partnerPaymentDueDate $partnerPaymentDueDate;
  123.         return $this;
  124.     }
  125. }