src/Entity/Anagrafiche.php line 26
<?phpnamespace App\Entity;use App\Model\Colonna;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;/*** Anagrafiche** @ORM\Table(name="anagrafiche", indexes={* @ORM\Index(name="anagrafiche_codice_idx",* columns={* "codice"* }* ),* @ORM\Index(name="anagrafiche_codice_tipo_idx",* columns={* "codice",* "tipo"* }* )})* @ORM\Entity(repositoryClass="App\Repository\AnagraficheRepository")*/class Anagrafiche{/*** @var int** @ORM\Column(name="id", type="integer")* @ORM\Id* @ORM\GeneratedValue(strategy="AUTO")*/private $id;/*** @var string** @ORM\Column(name="codice", type="string", length=255)*/private $codice;/*** @var string** @ORM\Column(name="tipo", type="string", length=20, nullable=true)*/private $tipo;/*** @var string** @ORM\Column(name="codice_listino_vendita", type="string", length=10)*/private $codiceListinoVendita;/*** @var string** @ORM\Column(name="descrizione_listino_vendita", type="string", length=255)*/private $descrizioneListinoVendita;/*** @var string** @ORM\Column(name="ragione_sociale", type="string", length=255, nullable=true)*/private $ragioneSociale;/*** @var string** @ORM\Column(name="indirizzo", type="string", length=255, nullable=true)*/private $indirizzo;/*** @var string** @ORM\Column(name="comune", type="string", length=255, nullable=true)*/private $comune;/*** @var string** @ORM\Column(name="provincia", type="string", length=255, nullable=true)*/private $provincia;/*** @var string** @ORM\Column(name="cap", type="string", length=255, nullable=true)*/private $cap;/*** @var string** @ORM\Column(name="nazione", type="string", length=255, nullable=true)*/private $nazione;/*** @var string** @ORM\Column(name="codice_zona", type="string", length=255, nullable=true)*/private $codiceZona;/*** @var string** @ORM\Column(name="descrizione_zona", type="string", length=255, nullable=true)*/private $descrizioneZona;/*** @var string** @ORM\Column(name="telefono", type="string", length=255, nullable=true)*/private $telefono;/*** @var string** @ORM\Column(name="fax", type="string", length=255, nullable=true)*/private $fax;/*** @var string** @ORM\Column(name="cellulare", type="string", length=255, nullable=true)*/private $cellulare;/*** @var string** @ORM\Column(name="sito_web", type="string", length=255, nullable=true)*/private $sitoWeb;/*** @var string** @ORM\Column(name="credit_safe_id_connect", type="string", length=255, nullable=true)*/private $creditSafeIdConnect;/*** @var string** @ORM\Column(name="credit_safe_report_json", type="text", nullable=true)*/private $creditSafeReportJson;/*** @var \DateTime** @ORM\Column(name="data_creditsafe", type="datetime", nullable=true)*/private $dataCreditsafe;/*** @var string** @ORM\Column(name="indirizzi_mail", type="string", length=255, nullable=true)*/private $indirizziMail;/*** @var string** @ORM\Column(name="codice_fiscale", type="string", length=255, nullable=true)*/private $codiceFiscale;/*** @var string** @ORM\Column(name="partita_iva", type="string", length=255, nullable=true)*/private $partitaIva;/*** @var string** @ORM\Column(name="codice_assoggettamento_fiscale", type="string", length=255, nullable=true)*/private $codiceAssoggettamentoFiscale;/*** @var string** @ORM\Column(name="descrizione_assoggettamento_fiscale", type="string", length=255, nullable=true)*/private $descrizioneAssoggettamentoFiscale;/*** @var string** @ORM\Column(name="codice_abi", type="string", length=255, nullable=true)*/private $codiceAbi;/*** @var string** @ORM\Column(name="codice_cab", type="string", length=255, nullable=true)*/private $codiceCab;/*** @var string** @ORM\Column(name="iban", type="string", length=255, nullable=true)*/private $iban;/*** @var string** @ORM\Column(name="codice_pagamento", type="string", length=255, nullable=true)*/private $codicePagamento;/*** @var string** @ORM\Column(name="descrizione_pagamento", type="string", length=255, nullable=true)*/private $descrizionePagamento;/*** @var string** @ORM\Column(name="sconto_commerciale", type="decimal", precision=10, scale=2, nullable=true)*/private $scontoCommerciale;/*** @var string** @ORM\Column(name="sconto_pagamento", type="decimal", precision=10, scale=2, nullable=true)*/private $scontoPagamento;/*** @var string** @ORM\Column(name="codice_aliquota_iva", type="string", length=255, nullable=true)*/private $codiceAliquotaIva;/*** @var string** @ORM\Column(name="valore_aliquota_iva", type="decimal", precision=10, scale=2, nullable=true)*/private $valoreAliquotaIva;/*** @var string** @ORM\Column(name="codice_riclassifica_amministrativa_1", type="string", length=255, nullable=true)*/private $codiceRiclassificaAmministrativa1;/*** @var string** @ORM\Column(name="descrizione_riclassifica_amministrativa_1", type="string", length=255, nullable=true)*/private $descrizioneRiclassificaAmministrativa1;/*** @var string** @ORM\Column(name="codice_spedizione", type="string", length=255, nullable=true)*/private $codiceSpedizione;/*** @var string** @ORM\Column(name="descrizione_spedizione", type="string", length=255, nullable=true)*/private $descrizioneSpedizione;/*** @var string** @ORM\Column(name="codice_consegna", type="string", length=255, nullable=true)*/private $codiceConsegna;/*** @var string** @ORM\Column(name="descrizione_consegna", type="string", length=255, nullable=true)*/private $descrizioneConsegna;/*** @var string** @ORM\Column(name="codice_agente", type="string", length=255, nullable=true)*/private $codiceAgente;/*** @var string** @ORM\Column(name="descrizione_agente", type="string", length=255, nullable=true)*/private $descrizioneAgente;/*** @var string** @ORM\Column(name="codice_canale_commerciale", type="string", length=255, nullable=true)*/private $codiceCanaleCommerciale;/*** @var string** @ORM\Column(name="descrizione_canale_commerciale", type="string", length=255, nullable=true)*/private $descrizioneCanaleCommerciale;/*** @var string** @ORM\Column(name="latitudine", type="decimal", precision=28, scale=9, nullable=true)*/private $latitudine;/*** @var string** @ORM\Column(name="longitudine", type="decimal", precision=28, scale=9, nullable=true)*/private $longitudine;/*** @var \DateTime** @ORM\Column(name="data_creazione", type="datetime")*/private $dataCreazione;/*** @var \DateTime** @ORM\Column(name="data_modifica", type="datetime")*/private $dataModifica;/*** @var string** @ORM\Column(name="note_anagrafica", type="text", length=65535, nullable=true)*/private $noteAnagrafica;/*** @var bool** @ORM\Column(name="attivo", type="boolean", nullable=true)*/private $attivo;/*** @var bool** @ORM\Column(name="monitora_giro_visita", type="boolean", nullable=true)*/private $monitoraGiroVisita;/*** @var int** @ORM\Column(name="giorni_scadenza_giro_visita", type="integer", nullable=true)*/private $giorniScadenzaGiroVisita;/*** @var \DateTime** @ORM\Column(name="data_ultima_visita", type="datetime", nullable=true)*/private $dataUltimaVista;/*** @var string** @ORM\Column(name="andamento_generale_fatturato", type="decimal", precision=28, scale=9, nullable=true)*/private $andamentoGeneraleFatturato;public static function CreaListaColonne($padre = ""){return array('id' => Colonna::CreaColonna('id', 'int', 'Id', $padre, '', '', '', false, null ),'codice' => Colonna::CreaColonna('codice', 'string', 'Codice', $padre, '', '', '', false, null ),'codiceListinoVendita' => Colonna::CreaColonna('codiceListinoVendita', 'string', 'Codice listino vendita', $padre, '', '', '', false, null ),'descrizioneListinoVendita' => Colonna::CreaColonna('descrizioneListinoVendita', 'string', 'Descrizione listino vendita', $padre, '', '', '', false, null ),'ragioneSociale' => Colonna::CreaColonna('ragioneSociale', 'string', 'Ragione sociale', $padre, '', '', '', false, null ),'indirizzo' => Colonna::CreaColonna('indirizzo', 'string', 'Indirizzo', $padre, '', '', '', false, null ),'comune' => Colonna::CreaColonna('comune', 'string', 'Comune', $padre, '', '', '', false, null ),'provincia' => Colonna::CreaColonna('provincia', 'string', 'Provincia', $padre, '', '', '', false, null ),'cap' => Colonna::CreaColonna('cap', 'string', 'Cap', $padre, '', '', '', false, null ),'nazione' => Colonna::CreaColonna('nazione', 'string', 'Nazione', $padre, '', '', '', false, null ),'codiceZona' => Colonna::CreaColonna('codiceZona', 'string', 'Codice zona', $padre, '', '', '', false, null ),'descrizioneZona' => Colonna::CreaColonna('descrizioneZona', 'string', 'Descrizione zona', $padre, '', '', '', false, null ),'telefono' => Colonna::CreaColonna('telefono', 'string', 'Telefono', $padre, '', '', '', false, null ),'fax' => Colonna::CreaColonna('fax', 'string', 'Fax', $padre, '', '', '', false, null ),'cellulare' => Colonna::CreaColonna('cellulare', 'string', 'Cellulare', $padre, '', '', '', false, null ),'sitoWeb' => Colonna::CreaColonna('sitoWeb', 'string', 'Sito web', $padre, '', '', '', false, null ),'indirizzoMail' => Colonna::CreaColonna('indirizzoMail', 'string', 'Indirizzo mail', $padre, '', '', '', false, null ),'codiceFiscale' => Colonna::CreaColonna('codiceFiscale', 'string', 'Codice fiscale', $padre, '', '', '', false, null ),'partitaIva' => Colonna::CreaColonna('partitaIva', 'string', 'Partita iva', $padre, '', '', '', false, null ),'codiceAssoggettamentoFiscale' => Colonna::CreaColonna('codiceAssoggettamentoFiscale', 'string', 'Codice assoggettamento fiscale', $padre, '', '', '', false, null ),'descrizioneAssoggettamentoFiscale' => Colonna::CreaColonna('descrizioneAssoggettamentoFiscale', 'string', 'Descrizione assoggettamento fiscale', $padre, '', '', '', false, null ),'codiceAbi' => Colonna::CreaColonna('codiceAbi', 'string', 'Codice abi', $padre, '', '', '', false, null ),'codiceCab' => Colonna::CreaColonna('codiceCab', 'string', 'Codice cab', $padre, '', '', '', false, null ),'iban' => Colonna::CreaColonna('iban', 'string', 'Iban', $padre, '', '', '', false, null ),'codicePagamento' => Colonna::CreaColonna('codicePagamento', 'string', 'Codice pagamento', $padre, '', '', '', false, null ),'descrizionePagamento' => Colonna::CreaColonna('descrizionePagamento', 'string', 'Descrizione pagamento', $padre, '', '', '', false, null ),'scontoCommerciale' => Colonna::CreaColonna('scontoCommerciale', 'decimal', 'Sconto commerciale', $padre, '', '', '', false, null ),'scontoPagamento' => Colonna::CreaColonna('scontoPagamento', 'decimal', 'Sconto pagamento', $padre, '', '', '', false, null ),'codiceRiclassificaAmministrativa1' => Colonna::CreaColonna('codiceRiclassificaAmministrativa1', 'string', 'Codice riclassifica amministrativa 1', $padre, '', '', '', false, null ),'descrizioneRiclassificaAmministrativa1' => Colonna::CreaColonna('descrizioneRiclassificaAmministrativa1', 'string', 'Descrizione riclassifica amministrativa 1', $padre, '', '', '', false, null ),'codiceSpedizione' => Colonna::CreaColonna('codiceSpedizione', 'string', 'Codice spedizione', $padre, '', '', '', false, null ),'descrizioneSpedizione' => Colonna::CreaColonna('descrizioneSpedizione', 'string', 'Descrizione spedizione', $padre, '', '', '', false, null ),'codiceConsegna' => Colonna::CreaColonna('codiceConsegna', 'string', 'Codice consegna', $padre, '', '', '', false, null ),'descrizioneConsegna' => Colonna::CreaColonna('descrizioneConsegna', 'string', 'Descrizione consegna', $padre, '', '', '', false, null ),'codiceAgente' => Colonna::CreaColonna('codiceAgente', 'string', 'Codice agente', $padre, '', '', '', false, null ),'descrizioneAgente' => Colonna::CreaColonna('descrizioneAgente', 'string', 'Descrizione agente', $padre, '', '', '', false, null ),'codiceCanaleCommerciale' => Colonna::CreaColonna('codiceCanaleCommerciale', 'string', 'Codice canale commerciale', $padre, '', '', '', false, null ),'descrizioneCanaleCommerciale' => Colonna::CreaColonna('descrizioneCanaleCommerciale', 'string', 'Descrizione canale commerciale', $padre, '', '', '', false, null ),'latitudine' => Colonna::CreaColonna('latitudine', 'string', 'Latitudine', $padre, '', '', '', false, null ),'longitudine' => Colonna::CreaColonna('longitudine', 'string', 'Longitudine', $padre, '', '', '', false, null ),'dataCreazione' => Colonna::CreaColonna('dataCreazione', 'datetime', 'Data creazione', $padre, '', '', '', false, null ),'dataModifica' => Colonna::CreaColonna('dataModifica', 'datetime', 'Data modifica', $padre, '', '', '', false, null ),'noteAnagrafica' => Colonna::CreaColonna('noteAnagrafica', 'string', 'Note anagrafica', $padre, '', '', '', false, null ),'giorniScadenzaGiroVisita' => Colonna::CreaColonna('giorniScadenzaGiroVisita', 'int', 'Giorni scadenza giro visita', $padre, '', '', '', false, null ),'monitoraGiroVisita' => Colonna::CreaColonna('monitoraGiroVisita', 'bool', 'Monitora giro visita', $padre, '', '', '', false, null ),'codiceAliquotaIva' => Colonna::CreaColonna('codiceAliquotaIva', 'string', 'Codice aliquota IVA', $padre, '', '', '', false, null),'dataUltimaVisista' => Colonna::CreaColonna('dataUltimaVisista', 'datetime', 'Data ultima visita', $padre, '', '', '', false, null ),'andamentoGeneraleFatturato' => Colonna::CreaColonna('andamentoGeneraleFatturato', 'double', 'Andamento generale fatturato', $padre, '', '', '', false, null),);}public function getId(): ?int{return $this->id;}public function getCodice(): ?string{return $this->codice;}public function setCodice(string $codice): static{$this->codice = $codice;return $this;}public function getCodiceListinoVendita(): ?string{return $this->codiceListinoVendita;}public function setCodiceListinoVendita(string $codiceListinoVendita): static{$this->codiceListinoVendita = $codiceListinoVendita;return $this;}public function getDescrizioneListinoVendita(): ?string{return $this->descrizioneListinoVendita;}public function setDescrizioneListinoVendita(string $descrizioneListinoVendita): static{$this->descrizioneListinoVendita = $descrizioneListinoVendita;return $this;}public function getRagioneSociale(): ?string{return $this->ragioneSociale;}public function setRagioneSociale(?string $ragioneSociale): static{$this->ragioneSociale = $ragioneSociale;return $this;}public function getIndirizzo(): ?string{return $this->indirizzo;}public function setIndirizzo(?string $indirizzo): static{$this->indirizzo = $indirizzo;return $this;}public function getComune(): ?string{return $this->comune;}public function setComune(?string $comune): static{$this->comune = $comune;return $this;}public function getProvincia(): ?string{return $this->provincia;}public function setProvincia(?string $provincia): static{$this->provincia = $provincia;return $this;}public function getCap(): ?string{return $this->cap;}public function setCap(?string $cap): static{$this->cap = $cap;return $this;}public function getNazione(): ?string{return $this->nazione;}public function setNazione(?string $nazione): static{$this->nazione = $nazione;return $this;}public function getCodiceZona(): ?string{return $this->codiceZona;}public function setCodiceZona(?string $codiceZona): static{$this->codiceZona = $codiceZona;return $this;}public function getDescrizioneZona(): ?string{return $this->descrizioneZona;}public function setDescrizioneZona(?string $descrizioneZona): static{$this->descrizioneZona = $descrizioneZona;return $this;}public function getTelefono(): ?string{return $this->telefono;}public function setTelefono(?string $telefono): static{$this->telefono = $telefono;return $this;}public function getFax(): ?string{return $this->fax;}public function setFax(?string $fax): static{$this->fax = $fax;return $this;}public function getCellulare(): ?string{return $this->cellulare;}public function setCellulare(?string $cellulare): static{$this->cellulare = $cellulare;return $this;}public function getSitoWeb(): ?string{return $this->sitoWeb;}public function setSitoWeb(?string $sitoWeb): static{$this->sitoWeb = $sitoWeb;return $this;}public function getIndirizziMail(): ?string{return $this->indirizziMail;}public function setIndirizziMail(?string $indirizziMail): static{$this->indirizziMail = $indirizziMail;return $this;}public function getCodiceFiscale(): ?string{return $this->codiceFiscale;}public function setCodiceFiscale(?string $codiceFiscale): static{$this->codiceFiscale = $codiceFiscale;return $this;}public function getPartitaIva(): ?string{return $this->partitaIva;}public function setPartitaIva(?string $partitaIva): static{$this->partitaIva = $partitaIva;return $this;}public function getCodiceAssoggettamentoFiscale(): ?string{return $this->codiceAssoggettamentoFiscale;}public function setCodiceAssoggettamentoFiscale(?string $codiceAssoggettamentoFiscale): static{$this->codiceAssoggettamentoFiscale = $codiceAssoggettamentoFiscale;return $this;}public function getDescrizioneAssoggettamentoFiscale(): ?string{return $this->descrizioneAssoggettamentoFiscale;}public function setDescrizioneAssoggettamentoFiscale(?string $descrizioneAssoggettamentoFiscale): static{$this->descrizioneAssoggettamentoFiscale = $descrizioneAssoggettamentoFiscale;return $this;}public function getCodiceAbi(): ?string{return $this->codiceAbi;}public function setCodiceAbi(?string $codiceAbi): static{$this->codiceAbi = $codiceAbi;return $this;}public function getCodiceCab(): ?string{return $this->codiceCab;}public function setCodiceCab(?string $codiceCab): static{$this->codiceCab = $codiceCab;return $this;}public function getIban(): ?string{return $this->iban;}public function setIban(?string $iban): static{$this->iban = $iban;return $this;}public function getCodicePagamento(): ?string{return $this->codicePagamento;}public function setCodicePagamento(?string $codicePagamento): static{$this->codicePagamento = $codicePagamento;return $this;}public function getDescrizionePagamento(): ?string{return $this->descrizionePagamento;}public function setDescrizionePagamento(?string $descrizionePagamento): static{$this->descrizionePagamento = $descrizionePagamento;return $this;}public function getScontoCommerciale(): ?string{return $this->scontoCommerciale;}public function setScontoCommerciale(?string $scontoCommerciale): static{$this->scontoCommerciale = $scontoCommerciale;return $this;}public function getScontoPagamento(): ?string{return $this->scontoPagamento;}public function setScontoPagamento(?string $scontoPagamento): static{$this->scontoPagamento = $scontoPagamento;return $this;}public function getCodiceAliquotaIva(): ?string{return $this->codiceAliquotaIva;}public function setCodiceAliquotaIva(?string $codiceAliquotaIva): static{$this->codiceAliquotaIva = $codiceAliquotaIva;return $this;}public function getValoreAliquotaIva(): ?string{return $this->valoreAliquotaIva;}public function setValoreAliquotaIva(?string $valoreAliquotaIva): static{$this->valoreAliquotaIva = $valoreAliquotaIva;return $this;}public function getCodiceRiclassificaAmministrativa1(): ?string{return $this->codiceRiclassificaAmministrativa1;}public function setCodiceRiclassificaAmministrativa1(?string $codiceRiclassificaAmministrativa1): static{$this->codiceRiclassificaAmministrativa1 = $codiceRiclassificaAmministrativa1;return $this;}public function getDescrizioneRiclassificaAmministrativa1(): ?string{return $this->descrizioneRiclassificaAmministrativa1;}public function setDescrizioneRiclassificaAmministrativa1(?string $descrizioneRiclassificaAmministrativa1): static{$this->descrizioneRiclassificaAmministrativa1 = $descrizioneRiclassificaAmministrativa1;return $this;}public function getCodiceSpedizione(): ?string{return $this->codiceSpedizione;}public function setCodiceSpedizione(?string $codiceSpedizione): static{$this->codiceSpedizione = $codiceSpedizione;return $this;}public function getDescrizioneSpedizione(): ?string{return $this->descrizioneSpedizione;}public function setDescrizioneSpedizione(?string $descrizioneSpedizione): static{$this->descrizioneSpedizione = $descrizioneSpedizione;return $this;}public function getCodiceConsegna(): ?string{return $this->codiceConsegna;}public function setCodiceConsegna(?string $codiceConsegna): static{$this->codiceConsegna = $codiceConsegna;return $this;}public function getDescrizioneConsegna(): ?string{return $this->descrizioneConsegna;}public function setDescrizioneConsegna(?string $descrizioneConsegna): static{$this->descrizioneConsegna = $descrizioneConsegna;return $this;}public function getCodiceAgente(): ?string{return $this->codiceAgente;}public function setCodiceAgente(?string $codiceAgente): static{$this->codiceAgente = $codiceAgente;return $this;}public function getDescrizioneAgente(): ?string{return $this->descrizioneAgente;}public function setDescrizioneAgente(?string $descrizioneAgente): static{$this->descrizioneAgente = $descrizioneAgente;return $this;}public function getCodiceCanaleCommerciale(): ?string{return $this->codiceCanaleCommerciale;}public function setCodiceCanaleCommerciale(?string $codiceCanaleCommerciale): static{$this->codiceCanaleCommerciale = $codiceCanaleCommerciale;return $this;}public function getDescrizioneCanaleCommerciale(): ?string{return $this->descrizioneCanaleCommerciale;}public function setDescrizioneCanaleCommerciale(?string $descrizioneCanaleCommerciale): static{$this->descrizioneCanaleCommerciale = $descrizioneCanaleCommerciale;return $this;}public function getLatitudine(): ?string{return $this->latitudine;}public function setLatitudine(?string $latitudine): static{$this->latitudine = $latitudine;return $this;}public function getLongitudine(): ?string{return $this->longitudine;}public function setLongitudine(?string $longitudine): static{$this->longitudine = $longitudine;return $this;}public function getDataCreazione(): ?\DateTimeInterface{return $this->dataCreazione;}public function setDataCreazione(\DateTimeInterface $dataCreazione): static{$this->dataCreazione = $dataCreazione;return $this;}public function getDataModifica(): ?\DateTimeInterface{return $this->dataModifica;}public function setDataModifica(\DateTimeInterface $dataModifica): static{$this->dataModifica = $dataModifica;return $this;}public function getNoteAnagrafica(): ?string{return $this->noteAnagrafica;}public function setNoteAnagrafica(?string $noteAnagrafica): static{$this->noteAnagrafica = $noteAnagrafica;return $this;}public function getCreditSafeIdConnect(): ?string{return $this->creditSafeIdConnect;}public function setCreditSafeIdConnect(?string $creditSafeIdConnect): static{$this->creditSafeIdConnect = $creditSafeIdConnect;return $this;}public function getCreditSafeReportJson(): ?string{return $this->creditSafeReportJson;}public function setCreditSafeReportJson(?string $creditSafeReportJson): static{$this->creditSafeReportJson = $creditSafeReportJson;return $this;}public function getDataCreditsafe(): ?\DateTimeInterface{return $this->dataCreditsafe;}public function setDataCreditsafe(?\DateTimeInterface $dataCreditsafe): static{$this->dataCreditsafe = $dataCreditsafe;return $this;}public function getAttivo(): ?bool{return $this->attivo;}public function setAttivo(?bool $attivo): static{$this->attivo = $attivo;return $this;}public function getTipo(): ?string{return $this->tipo;}public function setTipo(?string $tipo): static{$this->tipo = $tipo;return $this;}public function isAttivo(): ?bool{return $this->attivo;}public function isMonitoraGiroVisita(): ?bool{return $this->monitoraGiroVisita;}public function setMonitoraGiroVisita(?bool $monitoraGiroVisita): static{$this->monitoraGiroVisita = $monitoraGiroVisita;return $this;}public function getGiorniScadenzaGiroVisita(): ?int{return $this->giorniScadenzaGiroVisita;}public function setGiorniScadenzaGiroVisita(?int $giorniScadenzaGiroVisita): static{$this->giorniScadenzaGiroVisita = $giorniScadenzaGiroVisita;return $this;}public function getDataUltimaVista(): ?\DateTimeInterface{return $this->dataUltimaVista;}public function setDataUltimaVista(?\DateTimeInterface $dataUltimaVista): static{$this->dataUltimaVista = $dataUltimaVista;return $this;}public function getAndamentoGeneraleFatturato(): ?string{return $this->andamentoGeneraleFatturato;}public function setAndamentoGeneraleFatturato(?string $andamentoGeneraleFatturato): static{$this->andamentoGeneraleFatturato = $andamentoGeneraleFatturato;return $this;}}