<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="App\Repository\StatisticRepository")
*/
class Statistic
{
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $numberClic;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $numberContact;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $invoicedMonthlyTurnover;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $monthlyTurnoverCollected;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $invoicedQuarterlyTurnover;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $quarterlyTurnoverCollected;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $invoicedHalfYearlyTurnover;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $halfYearlyTurnoverCollected;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $annualTurnoverInvoiced;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $annualTurnoverCollected;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $monthlyCommissionDue;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $monthlyCommissionPaid;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $quarterlyCommissionDue;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $quarterlyCommissionPaid;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $semiAnnualCommissionDue;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $semiAnnualCommissionPaid;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $annualCommissionDue;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $annualCommissionPaid;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $monthlyCommissionCollected;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $quarterlyCommissionCollected;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $semiAnnualCommissionCollected;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $annualCommissionCollected;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $monthlyCommissionMangoPayDue;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $quarterlyCommissionMangoPayDue;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $semiAnnualCommissionMangoPayDue;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $annualCommissionMangoPayDue;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $monthlyCommissionMangoPayPaid;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $quarterlyCommissionMangoPayPaid;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $semiAnnualCommissionMangoPayPaid;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $annualCommissionMangoPayPaid;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $monthlyProfit;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $quarterlyProfit;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $semiAnnualProfit;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $annualProfit;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $profitSinceFoundation;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $amountPaid;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $amountNotPaid;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true, options={"default" : 0.00})
*/
private $monthlyRefund;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true, options={"default" : 0.00})
*/
private $quarterlyRefund;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true, options={"default" : 0.00})
*/
private $semiAnnualRefund;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true, options={"default" : 0.00})
*/
private $annualRefund;
public function getId(): ?int
{
return $this->id;
}
public function getNumberClic(): ?int
{
return $this->numberClic;
}
public function setNumberClic(?int $numberClic): self
{
$this->numberClic = $numberClic;
return $this;
}
public function getNumberContact(): ?int
{
return $this->numberContact;
}
public function setNumberContact(?int $numberContact): self
{
$this->numberContact = $numberContact;
return $this;
}
public function getInvoicedMonthlyTurnover(): ?string
{
return $this->invoicedMonthlyTurnover;
}
public function setInvoicedMonthlyTurnover(?string $invoicedMonthlyTurnover): self
{
$this->invoicedMonthlyTurnover = $invoicedMonthlyTurnover;
return $this;
}
public function getMonthlyTurnoverCollected(): ?string
{
return $this->monthlyTurnoverCollected;
}
public function setMonthlyTurnoverCollected(?string $monthlyTurnoverCollected): self
{
$this->monthlyTurnoverCollected = $monthlyTurnoverCollected;
return $this;
}
public function getInvoicedQuarterlyTurnover(): ?string
{
return $this->invoicedQuarterlyTurnover;
}
public function setInvoicedQuarterlyTurnover(?string $invoicedQuarterlyTurnover): self
{
$this->invoicedQuarterlyTurnover = $invoicedQuarterlyTurnover;
return $this;
}
public function getQuarterlyTurnoverCollected(): ?string
{
return $this->quarterlyTurnoverCollected;
}
public function setQuarterlyTurnoverCollected(?string $quarterlyTurnoverCollected): self
{
$this->quarterlyTurnoverCollected = $quarterlyTurnoverCollected;
return $this;
}
public function getInvoicedHalfYearlyTurnover(): ?string
{
return $this->invoicedHalfYearlyTurnover;
}
public function setInvoicedHalfYearlyTurnover(?string $invoicedHalfYearlyTurnover): self
{
$this->invoicedHalfYearlyTurnover = $invoicedHalfYearlyTurnover;
return $this;
}
public function getHalfYearlyTurnoverCollected(): ?string
{
return $this->halfYearlyTurnoverCollected;
}
public function setHalfYearlyTurnoverCollected(?string $halfYearlyTurnoverCollected): self
{
$this->halfYearlyTurnoverCollected = $halfYearlyTurnoverCollected;
return $this;
}
public function getAnnualTurnoverInvoiced(): ?string
{
return $this->annualTurnoverInvoiced;
}
public function setAnnualTurnoverInvoiced(?string $annualTurnoverInvoiced): self
{
$this->annualTurnoverInvoiced = $annualTurnoverInvoiced;
return $this;
}
public function getAnnualTurnoverCollected(): ?string
{
return $this->annualTurnoverCollected;
}
public function setAnnualTurnoverCollected(?string $annualTurnoverCollected): self
{
$this->annualTurnoverCollected = $annualTurnoverCollected;
return $this;
}
public function getMonthlyCommissionDue(): ?string
{
return $this->monthlyCommissionDue;
}
public function setMonthlyCommissionDue(?string $monthlyCommissionDue): self
{
$this->monthlyCommissionDue = $monthlyCommissionDue;
return $this;
}
public function getMonthlyCommissionPaid(): ?string
{
return $this->monthlyCommissionPaid;
}
public function setMonthlyCommissionPaid(?string $monthlyCommissionPaid): self
{
$this->monthlyCommissionPaid = $monthlyCommissionPaid;
return $this;
}
public function getQuarterlyCommissionDue(): ?string
{
return $this->quarterlyCommissionDue;
}
public function setQuarterlyCommissionDue(?string $quarterlyCommissionDue): self
{
$this->quarterlyCommissionDue = $quarterlyCommissionDue;
return $this;
}
public function getQuarterlyCommissionPaid(): ?string
{
return $this->quarterlyCommissionPaid;
}
public function setQuarterlyCommissionPaid(?string $quarterlyCommissionPaid): self
{
$this->quarterlyCommissionPaid = $quarterlyCommissionPaid;
return $this;
}
public function getSemiAnnualCommissionDue(): ?string
{
return $this->semiAnnualCommissionDue;
}
public function setSemiAnnualCommissionDue(?string $semiAnnualCommissionDue): self
{
$this->semiAnnualCommissionDue = $semiAnnualCommissionDue;
return $this;
}
public function getSemiAnnualCommissionPaid(): ?string
{
return $this->semiAnnualCommissionPaid;
}
public function setSemiAnnualCommissionPaid(?string $semiAnnualCommissionPaid): self
{
$this->semiAnnualCommissionPaid = $semiAnnualCommissionPaid;
return $this;
}
public function getAnnualCommissionDue(): ?string
{
return $this->annualCommissionDue;
}
public function setAnnualCommissionDue(?string $annualCommissionDue): self
{
$this->annualCommissionDue = $annualCommissionDue;
return $this;
}
public function getAnnualCommissionPaid(): ?string
{
return $this->annualCommissionPaid;
}
public function setAnnualCommissionPaid(?string $annualCommissionPaid): self
{
$this->annualCommissionPaid = $annualCommissionPaid;
return $this;
}
public function getMonthlyCommissionCollected(): ?string
{
return $this->monthlyCommissionCollected;
}
public function setMonthlyCommissionCollected(?string $monthlyCommissionCollected): self
{
$this->monthlyCommissionCollected = $monthlyCommissionCollected;
return $this;
}
public function getQuarterlyCommissionCollected(): ?string
{
return $this->quarterlyCommissionCollected;
}
public function setQuarterlyCommissionCollected(?string $quarterlyCommissionCollected): self
{
$this->quarterlyCommissionCollected = $quarterlyCommissionCollected;
return $this;
}
public function getSemiAnnualCommissionCollected(): ?string
{
return $this->semiAnnualCommissionCollected;
}
public function setSemiAnnualCommissionCollected(?string $semiAnnualCommissionCollected): self
{
$this->semiAnnualCommissionCollected = $semiAnnualCommissionCollected;
return $this;
}
public function getAnnualCommissionCollected(): ?string
{
return $this->annualCommissionCollected;
}
public function setAnnualCommissionCollected(?string $annualCommissionCollected): self
{
$this->annualCommissionCollected = $annualCommissionCollected;
return $this;
}
public function getMonthlyCommissionMangoPayDue(): ?string
{
return $this->monthlyCommissionMangoPayDue;
}
public function setMonthlyCommissionMangoPayDue(?string $monthlyCommissionMangoPayDue): self
{
$this->monthlyCommissionMangoPayDue = $monthlyCommissionMangoPayDue;
return $this;
}
public function getQuarterlyCommissionMangoPayDue(): ?string
{
return $this->quarterlyCommissionMangoPayDue;
}
public function setQuarterlyCommissionMangoPayDue(?string $quarterlyCommissionMangoPayDue): self
{
$this->quarterlyCommissionMangoPayDue = $quarterlyCommissionMangoPayDue;
return $this;
}
public function getSemiAnnualCommissionMangoPayDue(): ?string
{
return $this->semiAnnualCommissionMangoPayDue;
}
public function setSemiAnnualCommissionMangoPayDue(?string $semiAnnualCommissionMangoPayDue): self
{
$this->semiAnnualCommissionMangoPayDue = $semiAnnualCommissionMangoPayDue;
return $this;
}
public function getAnnualCommissionMangoPayDue(): ?string
{
return $this->annualCommissionMangoPayDue;
}
public function setAnnualCommissionMangoPayDue(?string $annualCommissionMangoPayDue): self
{
$this->annualCommissionMangoPayDue = $annualCommissionMangoPayDue;
return $this;
}
public function getMonthlyCommissionMangoPayPaid(): ?string
{
return $this->monthlyCommissionMangoPayPaid;
}
public function setMonthlyCommissionMangoPayPaid(?string $monthlyCommissionMangoPayPaid): self
{
$this->monthlyCommissionMangoPayPaid = $monthlyCommissionMangoPayPaid;
return $this;
}
public function getQuarterlyCommissionMangoPayPaid(): ?string
{
return $this->quarterlyCommissionMangoPayPaid;
}
public function setQuarterlyCommissionMangoPayPaid(?string $quarterlyCommissionMangoPayPaid): self
{
$this->quarterlyCommissionMangoPayPaid = $quarterlyCommissionMangoPayPaid;
return $this;
}
public function getSemiAnnualCommissionMangoPayPaid(): ?string
{
return $this->semiAnnualCommissionMangoPayPaid;
}
public function setSemiAnnualCommissionMangoPayPaid(?string $semiAnnualCommissionMangoPayPaid): self
{
$this->semiAnnualCommissionMangoPayPaid = $semiAnnualCommissionMangoPayPaid;
return $this;
}
public function getAnnualCommissionMangoPayPaid(): ?string
{
return $this->annualCommissionMangoPayPaid;
}
public function setAnnualCommissionMangoPayPaid(?string $annualCommissionMangoPayPaid): self
{
$this->annualCommissionMangoPayPaid = $annualCommissionMangoPayPaid;
return $this;
}
public function getMonthlyProfit(): ?string
{
return $this->monthlyProfit;
}
public function setMonthlyProfit(?string $monthlyProfit): self
{
$this->monthlyProfit = $monthlyProfit;
return $this;
}
public function getQuarterlyProfit(): ?string
{
return $this->quarterlyProfit;
}
public function setQuarterlyProfit(?string $quarterlyProfit): self
{
$this->quarterlyProfit = $quarterlyProfit;
return $this;
}
public function getSemiAnnualProfit(): ?string
{
return $this->semiAnnualProfit;
}
public function setSemiAnnualProfit(?string $semiAnnualProfit): self
{
$this->semiAnnualProfit = $semiAnnualProfit;
return $this;
}
public function getAnnualProfit(): ?string
{
return $this->annualProfit;
}
public function setAnnualProfit(?string $annualProfit): self
{
$this->annualProfit = $annualProfit;
return $this;
}
public function getProfitSinceFoundation(): ?string
{
return $this->profitSinceFoundation;
}
public function setProfitSinceFoundation(?string $profitSinceFoundation): self
{
$this->profitSinceFoundation = $profitSinceFoundation;
return $this;
}
public function getAmountPaid(): ?string
{
return $this->amountPaid;
}
public function setAmountPaid(?string $amountPaid): self
{
$this->amountPaid = $amountPaid;
return $this;
}
public function getAmountNotPaid(): ?string
{
return $this->amountNotPaid;
}
public function setAmountNotPaid(?string $amountNotPaid): self
{
$this->amountNotPaid = $amountNotPaid;
return $this;
}
public function getMonthlyRefund(): ?string
{
return $this->monthlyRefund;
}
public function setMonthlyRefund(?string $monthlyRefund): self
{
$this->monthlyRefund = $monthlyRefund;
return $this;
}
public function getQuarterlyRefund(): ?string
{
return $this->quarterlyRefund;
}
public function setQuarterlyRefund(?string $quarterlyRefund): self
{
$this->quarterlyRefund = $quarterlyRefund;
return $this;
}
public function getSemiAnnualRefund(): ?string
{
return $this->semiAnnualRefund;
}
public function setSemiAnnualRefund(?string $semiAnnualRefund): self
{
$this->semiAnnualRefund = $semiAnnualRefund;
return $this;
}
public function getAnnualRefund(): ?string
{
return $this->annualRefund;
}
public function setAnnualRefund(?string $annualRefund): self
{
$this->annualRefund = $annualRefund;
return $this;
}
}