src/Entity/ParametreSociete.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ParametreSocieteRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ParametreSocieteRepository::class)
  7.  */
  8. class ParametreSociete
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $lib_societe;
  20.     /**
  21.      * @ORM\Column(type="string", length=50)
  22.      */
  23.     private $base;
  24.     /**
  25.      * @ORM\Column(type="string", length=5)
  26.      */
  27.     private $prefix;
  28.     /**
  29.      * @ORM\Column(type="string", length=255, nullable=true)
  30.      */
  31.     private $logo_path;
  32.     /**
  33.      * @ORM\Column(type="boolean", options={"default" : 1})
  34.      */
  35.     private $is_active;
  36.     /**
  37.      * @ORM\Column(type="datetime", options={"default": "CURRENT_TIMESTAMP"})
  38.      */
  39.     private $date_crea;
  40.     /**
  41.      * @ORM\Column(type="integer")
  42.      */
  43.     private $user_crea;
  44.     /**
  45.      * @ORM\Column(type="datetime", nullable=true)
  46.      */
  47.     private $date_modif;
  48.     /**
  49.      * @ORM\Column(type="integer", nullable=true)
  50.      */
  51.     private $user_modif;
  52.     /**
  53.      * @ORM\Column(type="string", length=255)
  54.      */
  55.     private $theme_color;
  56.     /**
  57.      * @ORM\Column(type="string", length=255)
  58.      */
  59.     private $background_path;
  60.     /**
  61.      * @ORM\Column(type="text", nullable=true)
  62.      */
  63.     private $data;
  64.     public function getId(): ?int
  65.     {
  66.         return $this->id;
  67.     }
  68.     public function getLibSociete(): ?string
  69.     {
  70.         return $this->lib_societe;
  71.     }
  72.     public function setLibSociete(string $lib_societe): self
  73.     {
  74.         $this->lib_societe $lib_societe;
  75.         return $this;
  76.     }
  77.     public function getBase(): ?string
  78.     {
  79.         return $this->base;
  80.     }
  81.     public function setBase(string $base): self
  82.     {
  83.         $this->base $base;
  84.         return $this;
  85.     }
  86.     public function getPrefix(): ?string
  87.     {
  88.         return $this->prefix;
  89.     }
  90.     public function setPrefix(string $prefix): self
  91.     {
  92.         $this->prefix $prefix;
  93.         return $this;
  94.     }
  95.     public function getLogoPath(): ?string
  96.     {
  97.         return $this->logo_path;
  98.     }
  99.     public function setLogoPath(?string $logo_path): self
  100.     {
  101.         $this->logo_path $logo_path;
  102.         return $this;
  103.     }
  104.     public function getIsActive(): ?bool
  105.     {
  106.         return $this->is_active;
  107.     }
  108.     public function setIsActive(bool $is_active): self
  109.     {
  110.         $this->is_active $is_active;
  111.         return $this;
  112.     }
  113.     public function getDateCrea(): ?\DateTimeInterface
  114.     {
  115.         return $this->date_crea;
  116.     }
  117.     public function setDateCrea(\DateTimeInterface $date_crea): self
  118.     {
  119.         $this->date_crea $date_crea;
  120.         return $this;
  121.     }
  122.     public function getUserCrea(): ?int
  123.     {
  124.         return $this->user_crea;
  125.     }
  126.     public function setUserCrea(int $user_crea): self
  127.     {
  128.         $this->user_crea $user_crea;
  129.         return $this;
  130.     }
  131.     public function getDateModif(): ?\DateTimeInterface
  132.     {
  133.         return $this->date_modif;
  134.     }
  135.     public function setDateModif(?\DateTimeInterface $date_modif): self
  136.     {
  137.         $this->date_modif $date_modif;
  138.         return $this;
  139.     }
  140.     public function getUserModif(): ?int
  141.     {
  142.         return $this->user_modif;
  143.     }
  144.     public function setUserModif(?int $user_modif): self
  145.     {
  146.         $this->user_modif $user_modif;
  147.         return $this;
  148.     }
  149.     public function getThemeColor(): ?string
  150.     {
  151.         return $this->theme_color;
  152.     }
  153.     public function setThemeColor(string $theme_color): self
  154.     {
  155.         $this->theme_color $theme_color;
  156.         return $this;
  157.     }
  158.     public function getBackgroundPath(): ?string
  159.     {
  160.         return $this->background_path;
  161.     }
  162.     public function setBackgroundPath(string $background_path): self
  163.     {
  164.         $this->background_path $background_path;
  165.         return $this;
  166.     }
  167.     public function getData(): ?string
  168.     {
  169.         return $this->data;
  170.     }
  171.     public function setData(?string $data): self
  172.     {
  173.         $this->data $data;
  174.         return $this;
  175.     }
  176. }