src/Entity/AnnoncesAcheteurDetails.php line 14

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. /**
  3.  * @author Mehrez Labidi
  4.  */
  5. namespace App\Entity;
  6. use App\Repository\AnnoncesAcheteurDetailsRepository;
  7. use Doctrine\ORM\Mapping as ORM;
  8. /**
  9.  * @ORM\Entity(repositoryClass=AnnoncesAcheteurDetailsRepository::class)
  10.  * @ORM\Table(name="fusacq_dbo.annonces_acheteur_details")
  11.  */
  12. class  AnnoncesAcheteurDetails
  13. {
  14.     /**
  15.      * @var int @ORM\Id
  16.      * @ORM\Column(type="integer",name="id_annonces_acheteur_details" )
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     protected $id_annonces_acheteur_details;
  20.     /**
  21.      * @var string @ORM\Column(type="integer",  name="id_annonce_acheteur"  )
  22.      */
  23.     protected $id_annonce_acheteur;
  24.     /**
  25.      * @var string @ORM\Column(type="string",length=45,  name="devise"  )
  26.      */
  27.     protected $devise;
  28.     /**
  29.      * @var string @ORM\Column(type="float",  name="taux_change"  )
  30.      */
  31.     protected $taux_change;
  32.     /**
  33.      * @var string @ORM\Column(type="decimal", nullable=true, name="ca_societe"  )
  34.      */
  35.     protected $ca_societe;
  36.     /**
  37.      * @var string @ORM\Column(type="decimal", nullable=true, name="res_net_societe"  )
  38.      */
  39.     protected $res_net_societe;
  40.     /**
  41.      * @var string @ORM\Column(type="decimal", nullable=true, name="ca_min"  )
  42.      */
  43.     protected $ca_min;
  44.     /**
  45.      * @var string @ORM\Column(type="decimal", nullable=true, name="ca_max"  )
  46.      */
  47.     protected $ca_max;
  48.     /**
  49.      * @var string @ORM\Column(type="integer", nullable=true, name="apport_perso_repreneur"  )
  50.      */
  51.     protected $apport_perso_repreneur;
  52.     public function _get($property)
  53.     {
  54.         return $this->$property;
  55.     }
  56.     public function _set($property$value)
  57.     {
  58.         $this->$property $value;
  59.     }
  60. }