<?php
namespace App\Entity;
use App\Repository\GoalNumbersRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=GoalNumbersRepository::class)
*/
class GoalNumbers
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="integer")
*/
private $coordinators;
/**
* @ORM\Column(type="integer")
*/
private $operators;
/**
* @ORM\Column(type="integer")
*/
private $promoters;
/**
* @ORM\Column(type="integer")
*/
private $promoted;
public function getId(): ?int
{
return $this->id;
}
public function getCoordinators(): ?int
{
return $this->coordinators;
}
public function setCoordinators(int $coordinators): self
{
$this->coordinators = $coordinators;
return $this;
}
public function getOperators(): ?int
{
return $this->operators;
}
public function setOperators(int $operators): self
{
$this->operators = $operators;
return $this;
}
public function getPromoters(): ?int
{
return $this->promoters;
}
public function setPromoters(int $promoters): self
{
$this->promoters = $promoters;
return $this;
}
public function getPromoted(): ?int
{
return $this->promoted;
}
public function setPromoted(int $promoted): self
{
$this->promoted = $promoted;
return $this;
}
}