src/Entity/Setting.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SettingRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=SettingRepository::class)
  7.  */
  8. class Setting
  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 $time_zone;
  20.     /**
  21.      * @ORM\Column(type="string", length=255, nullable=true)
  22.      */
  23.     private $company_name;
  24.     /**
  25.      * @ORM\Column(type="string", length=255, nullable=true)
  26.      */
  27.     private $vat;
  28.     /**
  29.      * @ORM\Column(type="string", length=255)
  30.      */
  31.     private $company_email;
  32.     /**
  33.      * @ORM\Column(type="string", length=255, nullable=true)
  34.      */
  35.     private $company_phone;
  36.     /**
  37.      * @ORM\Column(type="string", length=255)
  38.      */
  39.     private $app_tenant_id;
  40.     /**
  41.      * @ORM\Column(type="string", length=255)
  42.      */
  43.     private $app_client_id;
  44.     /**
  45.      * @ORM\Column(type="string", length=255)
  46.      */
  47.     private $app_client_secret;
  48.     /**
  49.      * @ORM\Column(type="decimal", precision=10, scale=2)
  50.      */
  51.     private $invoice_discount;
  52.     /**
  53.      * @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
  54.      */
  55.     private $technical_costs_month_client;
  56.     /**
  57.      * @ORM\Column(type="string", length=255, nullable=true)
  58.      */
  59.     private $robot_user;
  60.     /**
  61.      * @ORM\Column(type="string", length=255, nullable=true)
  62.      */
  63.     private $robot_pwd;
  64.     /**
  65.      * @ORM\Column(type="integer")
  66.      */
  67.     private $first_invoice_number;
  68.     /**
  69.      * @ORM\Column(type="integer")
  70.      */
  71.     private $first_void_number;
  72.     public function getId(): ?int
  73.     {
  74.         return $this->id;
  75.     }
  76.     public function getTimeZone(): ?string
  77.     {
  78.         return $this->time_zone;
  79.     }
  80.     public function setTimeZone(string $time_zone): self
  81.     {
  82.         $this->time_zone $time_zone;
  83.         return $this;
  84.     }
  85.     public function getCompanyName(): ?string
  86.     {
  87.         return $this->company_name;
  88.     }
  89.     public function setCompanyName(?string $company_name): self
  90.     {
  91.         $this->company_name $company_name;
  92.         return $this;
  93.     }
  94.     public function getVat(): ?string
  95.     {
  96.         return $this->vat;
  97.     }
  98.     public function setVat(?string $vat): self
  99.     {
  100.         $this->vat $vat;
  101.         return $this;
  102.     }
  103.     public function getCompanyEmail(): ?string
  104.     {
  105.         return $this->company_email;
  106.     }
  107.     public function setCompanyEmail(string $company_email): self
  108.     {
  109.         $this->company_email $company_email;
  110.         return $this;
  111.     }
  112.     public function getCompanyPhone(): ?string
  113.     {
  114.         return $this->company_phone;
  115.     }
  116.     public function setCompanyPhone(?string $company_phone): self
  117.     {
  118.         $this->company_phone $company_phone;
  119.         return $this;
  120.     }
  121.     public function getAppTenantId(): ?string
  122.     {
  123.         return $this->app_tenant_id;
  124.     }
  125.     public function setAppTenantId(string $app_tenant_id): self
  126.     {
  127.         $this->app_tenant_id $app_tenant_id;
  128.         return $this;
  129.     }
  130.     public function getAppClientId(): ?string
  131.     {
  132.         return $this->app_client_id;
  133.     }
  134.     public function setAppClientId(string $app_client_id): self
  135.     {
  136.         $this->app_client_id $app_client_id;
  137.         return $this;
  138.     }
  139.     public function getAppClientSecret(): ?string
  140.     {
  141.         return $this->app_client_secret;
  142.     }
  143.     public function setAppClientSecret(string $app_client_secret): self
  144.     {
  145.         $this->app_client_secret $app_client_secret;
  146.         return $this;
  147.     }
  148.     public function getInvoiceDiscount(): ?string
  149.     {
  150.         return $this->invoice_discount;
  151.     }
  152.     public function setInvoiceDiscount(string $invoice_discount): self
  153.     {
  154.         $this->invoice_discount $invoice_discount;
  155.         return $this;
  156.     }
  157.     public function getTechnicalCostsMonthClient(): ?string
  158.     {
  159.         return $this->technical_costs_month_client;
  160.     }
  161.     public function setTechnicalCostsMonthClient(?string $technical_costs_month_client): self
  162.     {
  163.         $this->technical_costs_month_client $technical_costs_month_client;
  164.         return $this;
  165.     }
  166.     public function getRobotUser(): ?string
  167.     {
  168.         return $this->robot_user;
  169.     }
  170.     public function setRobotUser(?string $robot_user): self
  171.     {
  172.         $this->robot_user $robot_user;
  173.         return $this;
  174.     }
  175.     public function getRobotPwd(): ?string
  176.     {
  177.         return $this->robot_pwd;
  178.     }
  179.     public function setRobotPwd(?string $robot_pwd): self
  180.     {
  181.         $this->robot_pwd $robot_pwd;
  182.         return $this;
  183.     }
  184.     public function getFirstInvoiceNumber(): ?int
  185.     {
  186.         return $this->first_invoice_number;
  187.     }
  188.     public function setFirstInvoiceNumber(int $first_invoice_number): self
  189.     {
  190.         $this->first_invoice_number $first_invoice_number;
  191.         return $this;
  192.     }
  193.     public function getFirstVoidNumber(): ?int
  194.     {
  195.         return $this->first_void_number;
  196.     }
  197.     public function setFirstVoidNumber(int $first_void_number): self
  198.     {
  199.         $this->first_void_number $first_void_number;
  200.         return $this;
  201.     }
  202. }