src/Entity/Enterprise.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EnterpriseRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=EnterpriseRepository::class)
  7.  */
  8. class Enterprise
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $name;
  20.     /**
  21.      * @ORM\Column(type="text")
  22.      */
  23.     private $address;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $postalCode;
  28.     /**
  29.      * @ORM\Column(type="string", length=255)
  30.      */
  31.     private $email;
  32.     /**
  33.      * @ORM\Column(type="string", length=255)
  34.      */
  35.     private $phone;
  36.     /**
  37.      * @ORM\Column(type="string", length=255)
  38.      */
  39.     private $code;
  40.     /**
  41.      * @ORM\Column(type="string", length=255)
  42.      */
  43.     private $rfc;
  44.     /**
  45.      * @ORM\Column(type="string", length=255)
  46.      */
  47.     private $contactName;
  48.     /**
  49.      * @ORM\Column(type="string", length=255)
  50.      */
  51.     private $contactPhone;
  52.     /**
  53.      * @ORM\Column(type="string", length=255)
  54.      */
  55.     private $contactEmail;
  56.     /**
  57.      * @ORM\Column(type="boolean")
  58.      */
  59.     private $enabled;
  60.     public function getId(): ?int
  61.     {
  62.         return $this->id;
  63.     }
  64.     public function getName(): ?string
  65.     {
  66.         return $this->name;
  67.     }
  68.     public function setName(string $name): self
  69.     {
  70.         $this->name $name;
  71.         return $this;
  72.     }
  73.     public function getAddress(): ?string
  74.     {
  75.         return $this->address;
  76.     }
  77.     public function setAddress(string $address): self
  78.     {
  79.         $this->address $address;
  80.         return $this;
  81.     }
  82.     public function getPostalCode(): ?string
  83.     {
  84.         return $this->postalCode;
  85.     }
  86.     public function setPostalCode(string $postalCode): self
  87.     {
  88.         $this->postalCode $postalCode;
  89.         return $this;
  90.     }
  91.     public function getEmail(): ?string
  92.     {
  93.         return $this->email;
  94.     }
  95.     public function setEmail(string $email): self
  96.     {
  97.         $this->email $email;
  98.         return $this;
  99.     }
  100.     public function getPhone(): ?string
  101.     {
  102.         return $this->phone;
  103.     }
  104.     public function setPhone(string $phone): self
  105.     {
  106.         $this->phone $phone;
  107.         return $this;
  108.     }
  109.     public function getCode(): ?string
  110.     {
  111.         return $this->code;
  112.     }
  113.     public function setCode(string $code): self
  114.     {
  115.         $this->code $code;
  116.         return $this;
  117.     }
  118.     public function getRfc(): ?string
  119.     {
  120.         return $this->rfc;
  121.     }
  122.     public function setRfc(string $rfc): self
  123.     {
  124.         $this->rfc $rfc;
  125.         return $this;
  126.     }
  127.     public function getContactName(): ?string
  128.     {
  129.         return $this->contactName;
  130.     }
  131.     public function setContactName(string $contactName): self
  132.     {
  133.         $this->contactName $contactName;
  134.         return $this;
  135.     }
  136.     public function getContactPhone(): ?string
  137.     {
  138.         return $this->contactPhone;
  139.     }
  140.     public function setContactPhone(string $contactPhone): self
  141.     {
  142.         $this->contactPhone $contactPhone;
  143.         return $this;
  144.     }
  145.     public function getContactEmail(): ?string
  146.     {
  147.         return $this->contactEmail;
  148.     }
  149.     public function setContactEmail(string $contactEmail): self
  150.     {
  151.         $this->contactEmail $contactEmail;
  152.         return $this;
  153.     }
  154.     public function isEnabled(): ?bool
  155.     {
  156.         return $this->enabled;
  157.     }
  158.     public function setEnabled(bool $enabled): self
  159.     {
  160.         $this->enabled $enabled;
  161.         return $this;
  162.     }
  163. }