<?php
namespace App\Entity\Main;
use Doctrine\ORM\Mapping as ORM;
/**
* ApiPropertiesFeatures
*
* @ORM\Table(name="api_properties_features", indexes={@ORM\Index(name="id_feature", columns={"id_feature"}), @ORM\Index(name="id_property", columns={"id_property"})})
* @ORM\Entity(repositoryClass="App\Repository\Main\ApiPropertiesFeaturesRepository")
*/
class ApiPropertiesFeatures
{
/**
* @var int
*
* @ORM\Column(name="id_property", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="NONE")
*/
private $idProperty;
/**
* @var int
*
* @ORM\Column(name="id_feature", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="NONE")
*/
private $idFeature;
/**
* @var int
*
* @ORM\Column(name="id_feature_type", type="integer", nullable=false)
*/
private $idFeatureType;
/**
* @var string
*
* @ORM\Column(name="value", type="text", length=65535, nullable=false)
*/
private $value;
public function getIdProperty(): ?int
{
return $this->idProperty;
}
public function getIdFeature(): ?int
{
return $this->idFeature;
}
public function getIdFeatureType(): ?int
{
return $this->idFeatureType;
}
public function setIdFeatureType(int $idFeatureType): self
{
$this->idFeatureType = $idFeatureType;
return $this;
}
public function getValue(): ?string
{
return $this->value;
}
public function setValue(string $value): self
{
$this->value = $value;
return $this;
}
}