<?php
declare(strict_types=1);
/**
* @author Raymond
*/
namespace App\Entity;
use App\Repository\TranslateAnnonceVendeurRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=TranslateAnnonceVendeurRepository::class)
* @ORM\Table(name="fusacq_dbo.translate_annonce_vendeur")
*/
class TranslateAnnonceVendeur
{
/**
* @var int @ORM\Id
* @ORM\Column(type="integer",nullable=false,name="id_translate_annonce_vendeur")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id_translate_annonce_vendeur;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="id_annonce_vendeur", options={"default"= null})
*/
protected $id_annonce_vendeur;
/**
* @var string @ORM\Column(type="string", nullable=true, name="description_activite", options={"default"= null})
*/
protected $description_activite; // longtext
/**
* @var string @ORM\Column(type="string", nullable=true, name="titre_annonce", options={"default"= null})
*/
protected $titre_annonce; // varchar(100)
/**
* @var string @ORM\Column(type="string", nullable=true, name="commentaires", options={"default"= null})
*/
protected $commentaires; // longtext
/**
* @var string @ORM\Column(type="string", nullable=true, name="mots_cle_recherche", options={"default"= null})
*/
protected $mots_cle_recherche; // longtext
/**
* @var string @ORM\Column(type="string", nullable=true, name="mots_cles", options={"default"= null})
*/
protected $mots_cles; // longtext
/**
* @var string @ORM\Column(type="decimal", nullable=true, name="points_forts", options={"default"= null})
*/
protected $points_forts; // longtext
/**
* @var string @ORM\Column(type="string", nullable=true, name="points_faibles", options={"default"= null})
*/
protected $points_faibles; // longtext
/**
* @var string @ORM\Column(type="string", nullable=true, name="raison_cession", options={"default"= null})
*/
protected $raison_cession; // longtext
/**
* @var string @ORM\Column(type="string", nullable=true, name="concurrence", options={"default"= null})
*/
protected $concurrence; // longtext
/**
* @var string @ORM\Column(type="string", nullable=true, name="positionnement_marche", options={"default"= null})
*/
protected $positionnement_marche; // longtext
/**
* @var string @ORM\Column(type="string", nullable=true, name="elements_complementaires", options={"default"= null})
*/
protected $elements_complementaires; // longtext
/**
* @var string @ORM\Column(type="string", nullable=true, name="profil_repreneur_recherche", options={"default"= null})
*/
protected $profil_repreneur_recherche; // longtext
/**
* @var string @ORM\Column(type="string", nullable=true, name="code_langue", options={"default"= null})
*/
protected $code_langue; // varchar(45)
/**
* Magic getter to expose protected properties.
*
* @param string $property
*
* @return mixed
*/
public function _get($property)
{
return $this->$property;
}
/**
* Magic setter to save protected properties.
*
* @param string $property
* @param mixed $value
*/
public function _set($property, $value)
{
$this->$property = $value;
}
}