<?php
namespace App\Entity;
use App\Repository\CompanyRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=CompanyRepository::class)
*/
class Company
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $Name;
/**
* @ORM\Column(type="string", length=255)
*/
private $website;
/**
* @ORM\Column(type="string", length=255)
*/
private $email;
/**
* @ORM\Column(type="string", length=255)
*/
private $phone;
/**
* @ORM\Column(type="text")
*/
private $brief;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $industry;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $status;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $logo;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $location;
/**
* @ORM\Column(type="integer")
*/
private $founded;
/**
* @ORM\Column(type="integer")
*/
private $employees;
/**
* @ORM\Column(type="integer")
*/
private $sales;
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->Name;
}
public function setName(string $Name): self
{
$this->Name = $Name;
return $this;
}
public function getWebsite(): ?string
{
return $this->website;
}
public function setWebsite(string $website): self
{
$this->website = $website;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(string $email): self
{
$this->email = $email;
return $this;
}
public function getPhone(): ?string
{
return $this->phone;
}
public function setPhone(string $phone): self
{
$this->phone = $phone;
return $this;
}
public function getBrief(): ?string
{
return $this->brief;
}
public function setBrief(string $brief): self
{
$this->brief = $brief;
return $this;
}
public function getIndustry(): ?string
{
return $this->industry;
}
public function setIndustry(?string $industry): self
{
$this->industry = $industry;
return $this;
}
public function getStatus(): ?int
{
return $this->status;
}
public function setStatus(?int $status): self
{
$this->status = $status;
return $this;
}
public function getLogo(): ?string
{
return $this->logo;
}
public function setLogo(?string $logo): self
{
$this->logo = $logo;
return $this;
}
public function getLocation(): ?string
{
return $this->location;
}
public function setLocation(?string $location): self
{
$this->location = $location;
return $this;
}
public function getFounded(): ?int
{
return $this->founded;
}
public function setFounded(int $founded): self
{
$this->founded = $founded;
return $this;
}
public function getEmployees(): ?int
{
return $this->employees;
}
public function setEmployees(int $employees): self
{
$this->employees = $employees;
return $this;
}
public function getSales(): ?int
{
return $this->sales;
}
public function setSales(int $sales): self
{
$this->sales = $sales;
return $this;
}
}