<?php
namespace App\Entity;
use App\Repository\ExpertiseRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=ExpertiseRepository::class)
*/
class Expertise
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="integer")
*/
private $revenuLocatif;
/**
* @ORM\Column(type="float")
*/
private $tauxImposition;
/**
* @ORM\Column(type="string", length=255)
*/
private $type;
public function getId(): ?int
{
return $this->id;
}
public function getRevenuLocatif(): ?int
{
return $this->revenuLocatif;
}
public function setRevenuLocatif(int $revenuLocatif): self
{
$this->revenuLocatif = $revenuLocatif;
return $this;
}
public function getTauxImposition(): ?float
{
return $this->tauxImposition;
}
public function setTauxImposition(float $tauxImposition): self
{
$this->tauxImposition = $tauxImposition;
return $this;
}
public function getType(): ?string
{
return $this->type;
}
public function setType(string $type): self
{
$this->type = $type;
return $this;
}
}