src/Entity/BuzzRoles.php line 19

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4.  * @author Mehrez Labidi
  5.  */
  6. namespace App\Entity;
  7. use App\Repository\BuzzRolesRepository;
  8. use Doctrine\ORM\Mapping as ORM;
  9. /**
  10.  * buzz_roles table.
  11.  *
  12.  * @ORM\Entity(repositoryClass=BuzzRolesRepository::class)
  13.  * @ORM\Table(name="fusacq_dbo.buzz_roles")
  14.  */
  15. class BuzzRoles {
  16.     const TABLE_SQL_ACTEUR = ['societes_news''societe_gestionnaire_fonds''services_prestataire'NULL];
  17.     const TABLE_SQL_ACTEUR_PASSIF = ['societes_news''societe_gestionnaire_fonds'NULL];
  18.     /**     
  19.      * @var int @ORM\Id    
  20.      * @ORM\Column(type="integer",name="id_role" )    
  21.      * @ORM\GeneratedValue(strategy="AUTO")    
  22.      */
  23.     public $id_role;
  24.     /**     
  25.      * @var string @ORM\Column(type="integer",  name="id_type_role"  )    
  26.      */
  27.     public $id_type_role;
  28.     /**     
  29.      * @var string @ORM\Column(type="integer",  name="id_operation"  )    
  30.      */
  31.     public $id_operation;
  32.     /**     
  33.      * @var string @ORM\Column(type="integer", nullable=true, name="id_acteur"  )    
  34.      */
  35.     public $id_acteur;
  36.     /**     
  37.      * @var string @ORM\Column(type="string",length=45, nullable=true, name="table_sql_acteur"  )    
  38.      */
  39.     public $table_sql_acteur;
  40.     /**     
  41.      * @var string @ORM\Column(type="integer", nullable=true, name="id_membre"  )    
  42.      */
  43.     public $id_membre;
  44.     /**     
  45.      * @var string @ORM\Column(type="integer", nullable=true, name="id_acteur_passif"  )    
  46.      */
  47.     public $id_acteur_passif;
  48.     /**     
  49.      * @var string @ORM\Column(type="string",length=45, nullable=true, name="table_sql_acteur_passif"  )    
  50.      */
  51.     public $table_sql_acteur_passif;
  52.     /**     
  53.      * @var string @ORM\Column(type="integer", nullable=true, name="id_membre_passif"  )    
  54.      */
  55.     public $id_membre_passif;
  56.     /**     
  57.      * @var string @ORM\Column(type="text", nullable=true, name="suivi_role"  )    
  58.      */
  59.     public $suivi_role;
  60.     /**     
  61.      * @var string @ORM\Column(type="string",length=50, nullable=true, name="complement_type_role"  )    
  62.      */
  63.     public $complement_type_role;
  64.     public function _get($property) {
  65.         return $this->$property;
  66.     }
  67.     public function _set($property$value) {
  68.         $this->$property $value;
  69.     }
  70.     public function __get($property) {
  71.         return $this->$property;
  72.     }
  73.     
  74.     public function __set($property$value) {
  75.         $this->$property $value;
  76.     }
  77.     public function getId() {
  78.         return $this->id_role;
  79.     }
  80.     public function __construct() {
  81.         
  82.     }
  83. }