<?php
declare(strict_types=1);
/**
* @author Mehrez Labidi
*/
namespace App\Entity;
use App\Repository\ReseauxRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* reseaux table.
*
* @ORM\Entity(repositoryClass=ReseauxRepository::class)
* @ORM\Table(name="fusacq_dbo.reseaux")
*/
class Reseaux
{
public const SEGMENT_TOUS = '3';
public const SEGMENT_PME = '2';
public const SEGMENT_TPE = '1';
/**
* @var int @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
public $id_reseau;
/**
* @var string @ORM\Column(type="string", nullable=true, name="nom", options={"default"= null})
*/
public $nom;
/**
* @var string @ORM\Column(type="string", nullable=true, name="resume", options={"default"= null})
*/
public $resume;
/**
* @var string @ORM\Column(type="string", nullable=true, name="site_internet", options={"default"= null})
*/
public $site_internet;
/**
* @var string @ORM\Column(type="string", nullable=true, name="mode_reseau", options={"default"= null})
*/
public $mode_reseau;
/**
* @var string @ORM\Column(type="string", nullable=true, name="adresse", options={"default"= null})
*/
public $adresse;
/**
* @var string @ORM\Column(type="string", nullable=true, name="code_postal", options={"default"= null})
*/
public $code_postal;
/**
* @var string @ORM\Column(type="string", nullable=true, name="ville", options={"default"= null})
*/
public $ville;
/**
* @var string @ORM\Column(type="string", nullable=true, name="contact", options={"default"= null})
*/
public $contact;
/**
* @var string @ORM\Column(type="string", nullable=true, name="telephone", options={"default"= null})
*/
public $telephone;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="id_service_prestataire", options={"default"= null})
*/
public $id_service_prestataire;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="segments_classements_concernes", options={"default"= null})
*/
public $segments_classements_concernes;
public function __get($property)
{
return $this->$property;
}
public function __set($property, $value)
{
$this->$property = $value;
}
}