src/Entity/ModalitaPagamento.php line 15
<?phpnamespace App\Entity;use App\Model\Colonna;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;/*** ModalitaPagamento** @ORM\Table(name="modalita_pagamento")* @ORM\Entity(repositoryClass="App\Repository\ModalitaPagamentoRepository")*/class ModalitaPagamento{/*** @var int** @ORM\Column(name="id", type="integer")* @ORM\Id* @ORM\GeneratedValue(strategy="AUTO")*/private $id;/*** @var string** @ORM\Column(name="nome", type="string", length=255)*/private $nome;/*** @var string** @ORM\Column(name="codice_esportazione", type="string", length=20)*/private $codiceEsportazione;/*** @var string** @ORM\Column(name="servizio_pagamento_automatico", type="string", length=255, nullable=true)*/private $servizioPagamentoAutomatico;/*** @var bool** @ORM\Column(name="conferma_manuale_pagamento", type="boolean")*/private $confermaManualePagamento;/*** @var string** @ORM\Column(name="testo_descrittivo", type="string", length=255, nullable=true)*/private $testoDescrittivo;/*** @var string** @ORM\Column(name="pagina", type="string", length=255, nullable=true)*/private $pagina;/*** @var string** @ORM\Column(name="sconto_pagamento", type="decimal", precision=18, scale=2, nullable=true)*/private $scontoPagamento;/*** @var string** @ORM\Column(name="incremento_pagamento", type="decimal", precision=18, scale=2, nullable=true)*/private $incrementoPagamento;/*** @var string** @ORM\Column(name="prezzo_pagamento", type="decimal", precision=18, scale=2, nullable=true)*/private $prezzoPagamento;/*** @var string** @ORM\Column(name="istruzioni_pagamento", type="string", length=255, nullable=true)*/private $istruzioniPagamento;/*** @var string** @ORM\Column(name="immagine", type="string", length=255, nullable=true)*/private $immagine;/*** @var bool** @ORM\Column(name="attivo", type="boolean")*/private $attivo;/*** @ORM\ManyToOne(targetEntity="User")* @ORM\JoinColumn(name="utente_modifica_id", referencedColumnName="id", onDelete="SET NULL")*/private $utenteModifica;/*** @var \DateTime** @ORM\Column(name="data_creazione", type="datetime")*/private $dataCreazione;/*** @var \DateTime** @ORM\Column(name="data_modifica", type="datetime")*/private $dataModifica;public function getId(): ?int{return $this->id;}public function setNome(string $nome): static{$this->nome = $nome;return $this;}public function getNome(): ?string{return $this->nome;}public function setCodiceEsportazione(string $codiceEsportazione): static{$this->codiceEsportazione = $codiceEsportazione;return $this;}public function getCodiceEsportazione(): ?string{return $this->codiceEsportazione;}public function setServizioPagamentoAutomatico(?string $servizioPagamentoAutomatico): static{$this->servizioPagamentoAutomatico = $servizioPagamentoAutomatico;return $this;}public function getServizioPagamentoAutomatico(): ?string{return $this->servizioPagamentoAutomatico;}public function setConfermaManualePagamento(bool $confermaManualePagamento): static{$this->confermaManualePagamento = $confermaManualePagamento;return $this;}public function getConfermaManualePagamento(): ?bool{return $this->confermaManualePagamento;}public function setTestoDescrittivo(?string $testoDescrittivo): static{$this->testoDescrittivo = $testoDescrittivo;return $this;}public function getTestoDescrittivo(): ?string{return $this->testoDescrittivo;}public function setPagina(?string $pagina): static{$this->pagina = $pagina;return $this;}public function getPagina(): ?string{return $this->pagina;}public function setScontoPagamento(?string $scontoPagamento): static{$this->scontoPagamento = $scontoPagamento;return $this;}public function getScontoPagamento(): ?string{return $this->scontoPagamento;}public function setIncrementoPagamento(?string $incrementoPagamento): static{$this->incrementoPagamento = $incrementoPagamento;return $this;}public function getIncrementoPagamento(): ?string{return $this->incrementoPagamento;}public function setPrezzoPagamento(?string $prezzoPagamento): static{$this->prezzoPagamento = $prezzoPagamento;return $this;}public function getPrezzoPagamento(): ?string{return $this->prezzoPagamento;}public function setIstruzioniPagamento(?string $istruzioniPagamento): static{$this->istruzioniPagamento = $istruzioniPagamento;return $this;}public function getIstruzioniPagamento(): ?string{return $this->istruzioniPagamento;}public function setImmagine(?string $immagine): static{$this->immagine = $immagine;return $this;}public function getImmagine(): ?string{return $this->immagine;}public function setAttivo(bool $attivo): static{$this->attivo = $attivo;return $this;}public function getAttivo(): ?bool{return $this->attivo;}public function setDataCreazione(\DateTimeInterface $dataCreazione): static{$this->dataCreazione = $dataCreazione;return $this;}public function getDataCreazione(): ?\DateTimeInterface{return $this->dataCreazione;}public function setDataModifica(\DateTimeInterface $dataModifica): static{$this->dataModifica = $dataModifica;return $this;}public function getDataModifica(): ?\DateTimeInterface{return $this->dataModifica;}public function setUtenteModifica(?User $utenteModifica): static{$this->utenteModifica = $utenteModifica;return $this;}public function getUtenteModifica(): ?User{return $this->utenteModifica;}public function isConfermaManualePagamento(): ?bool{return $this->confermaManualePagamento;}public function isAttivo(): ?bool{return $this->attivo;}}