src/Entity/TranslateAnnonceVendeur.php line 16

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4.  * @author Raymond
  5.  */
  6. namespace App\Entity;
  7. use App\Repository\TranslateAnnonceVendeurRepository;
  8. use Doctrine\ORM\Mapping as ORM;
  9. /**
  10.  * @ORM\Entity(repositoryClass=TranslateAnnonceVendeurRepository::class)
  11.  * @ORM\Table(name="fusacq_dbo.translate_annonce_vendeur")
  12.  */
  13. class TranslateAnnonceVendeur
  14. {
  15.     /**
  16.      * @var int @ORM\Id
  17.      * @ORM\Column(type="integer",nullable=false,name="id_translate_annonce_vendeur")
  18.      * @ORM\GeneratedValue(strategy="AUTO")
  19.      */
  20.     protected $id_translate_annonce_vendeur;
  21.     /**
  22.      * @var string @ORM\Column(type="integer", nullable=true, name="id_annonce_vendeur", options={"default"= null})
  23.      */
  24.     protected $id_annonce_vendeur;
  25.     /**
  26.      * @var string @ORM\Column(type="string", nullable=true, name="description_activite", options={"default"= null})
  27.      */
  28.     protected $description_activite//    longtext
  29.     /**
  30.      * @var string @ORM\Column(type="string", nullable=true, name="titre_annonce", options={"default"= null})
  31.      */
  32.     protected $titre_annonce//    varchar(100)
  33.     /**
  34.      * @var string @ORM\Column(type="string", nullable=true, name="commentaires", options={"default"= null})
  35.      */
  36.     protected $commentaires//    longtext
  37.     /**
  38.      * @var string @ORM\Column(type="string", nullable=true, name="mots_cle_recherche", options={"default"= null})
  39.      */
  40.     protected $mots_cle_recherche//    longtext
  41.     /**
  42.      * @var string @ORM\Column(type="string", nullable=true, name="mots_cles", options={"default"= null})
  43.      */
  44.     protected $mots_cles//    longtext
  45.     /**
  46.      * @var string @ORM\Column(type="decimal", nullable=true, name="points_forts", options={"default"= null})
  47.      */
  48.     protected $points_forts//    longtext
  49.     /**
  50.      * @var string @ORM\Column(type="string", nullable=true, name="points_faibles", options={"default"= null})
  51.      */
  52.     protected $points_faibles//    longtext
  53.     /**
  54.      * @var string @ORM\Column(type="string", nullable=true, name="raison_cession", options={"default"= null})
  55.      */
  56.     protected $raison_cession//    longtext
  57.     /**
  58.      * @var string @ORM\Column(type="string", nullable=true, name="concurrence", options={"default"= null})
  59.      */
  60.     protected $concurrence//    longtext
  61.     /**
  62.      * @var string @ORM\Column(type="string", nullable=true, name="positionnement_marche", options={"default"= null})
  63.      */
  64.     protected $positionnement_marche//    longtext
  65.     /**
  66.      * @var string @ORM\Column(type="string", nullable=true, name="elements_complementaires", options={"default"= null})
  67.      */
  68.     protected $elements_complementaires//    longtext
  69.     /**
  70.      * @var string @ORM\Column(type="string", nullable=true, name="profil_repreneur_recherche", options={"default"= null})
  71.      */
  72.     protected $profil_repreneur_recherche//    longtext
  73.     /**
  74.      * @var string @ORM\Column(type="string", nullable=true, name="code_langue", options={"default"= null})
  75.      */
  76.     protected $code_langue//    varchar(45)
  77.     /**
  78.      * Magic getter to expose protected properties.
  79.      *
  80.      * @param string $property
  81.      *
  82.      * @return mixed
  83.      */
  84.     public function _get($property)
  85.     {
  86.         return $this->$property;
  87.     }
  88.     /**
  89.      * Magic setter to save protected properties.
  90.      *
  91.      * @param string $property
  92.      * @param mixed  $value
  93.      */
  94.     public function _set($property$value)
  95.     {
  96.         $this->$property $value;
  97.     }
  98. }