<?php
declare(strict_types=1);
/**
* @author Mehrez Labidi
*/
namespace App\Entity;
use App\Repository\BuzzRolesRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* buzz_roles table.
*
* @ORM\Entity(repositoryClass=BuzzRolesRepository::class)
* @ORM\Table(name="fusacq_dbo.buzz_roles")
*/
class BuzzRoles {
const TABLE_SQL_ACTEUR = ['societes_news', 'societe_gestionnaire_fonds', 'services_prestataire', NULL];
const TABLE_SQL_ACTEUR_PASSIF = ['societes_news', 'societe_gestionnaire_fonds', NULL];
/**
* @var int @ORM\Id
* @ORM\Column(type="integer",name="id_role" )
* @ORM\GeneratedValue(strategy="AUTO")
*/
public $id_role;
/**
* @var string @ORM\Column(type="integer", name="id_type_role" )
*/
public $id_type_role;
/**
* @var string @ORM\Column(type="integer", name="id_operation" )
*/
public $id_operation;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="id_acteur" )
*/
public $id_acteur;
/**
* @var string @ORM\Column(type="string",length=45, nullable=true, name="table_sql_acteur" )
*/
public $table_sql_acteur;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="id_membre" )
*/
public $id_membre;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="id_acteur_passif" )
*/
public $id_acteur_passif;
/**
* @var string @ORM\Column(type="string",length=45, nullable=true, name="table_sql_acteur_passif" )
*/
public $table_sql_acteur_passif;
/**
* @var string @ORM\Column(type="integer", nullable=true, name="id_membre_passif" )
*/
public $id_membre_passif;
/**
* @var string @ORM\Column(type="text", nullable=true, name="suivi_role" )
*/
public $suivi_role;
/**
* @var string @ORM\Column(type="string",length=50, nullable=true, name="complement_type_role" )
*/
public $complement_type_role;
public function _get($property) {
return $this->$property;
}
public function _set($property, $value) {
$this->$property = $value;
}
public function __get($property) {
return $this->$property;
}
public function __set($property, $value) {
$this->$property = $value;
}
public function getId() {
return $this->id_role;
}
public function __construct() {
}
}