<?php
namespace App\Entity;
use App\Repository\SettingRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=SettingRepository::class)
*/
class Setting
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $time_zone;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $company_name;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $vat;
/**
* @ORM\Column(type="string", length=255)
*/
private $company_email;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $company_phone;
/**
* @ORM\Column(type="string", length=255)
*/
private $app_tenant_id;
/**
* @ORM\Column(type="string", length=255)
*/
private $app_client_id;
/**
* @ORM\Column(type="string", length=255)
*/
private $app_client_secret;
/**
* @ORM\Column(type="decimal", precision=10, scale=2)
*/
private $invoice_discount;
/**
* @ORM\Column(type="decimal", precision=10, scale=2, nullable=true)
*/
private $technical_costs_month_client;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $robot_user;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $robot_pwd;
/**
* @ORM\Column(type="integer")
*/
private $first_invoice_number;
/**
* @ORM\Column(type="integer")
*/
private $first_void_number;
public function getId(): ?int
{
return $this->id;
}
public function getTimeZone(): ?string
{
return $this->time_zone;
}
public function setTimeZone(string $time_zone): self
{
$this->time_zone = $time_zone;
return $this;
}
public function getCompanyName(): ?string
{
return $this->company_name;
}
public function setCompanyName(?string $company_name): self
{
$this->company_name = $company_name;
return $this;
}
public function getVat(): ?string
{
return $this->vat;
}
public function setVat(?string $vat): self
{
$this->vat = $vat;
return $this;
}
public function getCompanyEmail(): ?string
{
return $this->company_email;
}
public function setCompanyEmail(string $company_email): self
{
$this->company_email = $company_email;
return $this;
}
public function getCompanyPhone(): ?string
{
return $this->company_phone;
}
public function setCompanyPhone(?string $company_phone): self
{
$this->company_phone = $company_phone;
return $this;
}
public function getAppTenantId(): ?string
{
return $this->app_tenant_id;
}
public function setAppTenantId(string $app_tenant_id): self
{
$this->app_tenant_id = $app_tenant_id;
return $this;
}
public function getAppClientId(): ?string
{
return $this->app_client_id;
}
public function setAppClientId(string $app_client_id): self
{
$this->app_client_id = $app_client_id;
return $this;
}
public function getAppClientSecret(): ?string
{
return $this->app_client_secret;
}
public function setAppClientSecret(string $app_client_secret): self
{
$this->app_client_secret = $app_client_secret;
return $this;
}
public function getInvoiceDiscount(): ?string
{
return $this->invoice_discount;
}
public function setInvoiceDiscount(string $invoice_discount): self
{
$this->invoice_discount = $invoice_discount;
return $this;
}
public function getTechnicalCostsMonthClient(): ?string
{
return $this->technical_costs_month_client;
}
public function setTechnicalCostsMonthClient(?string $technical_costs_month_client): self
{
$this->technical_costs_month_client = $technical_costs_month_client;
return $this;
}
public function getRobotUser(): ?string
{
return $this->robot_user;
}
public function setRobotUser(?string $robot_user): self
{
$this->robot_user = $robot_user;
return $this;
}
public function getRobotPwd(): ?string
{
return $this->robot_pwd;
}
public function setRobotPwd(?string $robot_pwd): self
{
$this->robot_pwd = $robot_pwd;
return $this;
}
public function getFirstInvoiceNumber(): ?int
{
return $this->first_invoice_number;
}
public function setFirstInvoiceNumber(int $first_invoice_number): self
{
$this->first_invoice_number = $first_invoice_number;
return $this;
}
public function getFirstVoidNumber(): ?int
{
return $this->first_void_number;
}
public function setFirstVoidNumber(int $first_void_number): self
{
$this->first_void_number = $first_void_number;
return $this;
}
}