src/Entity/OfferteRighe.php line 14
<?phpnamespace App\Entity;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;/*** OfferteRighe** @ORM\Table(name="offerte_righe")* @ORM\Entity(repositoryClass="App\Repository\OfferteRigheRepository")*/class OfferteRighe{/*** @var int** @ORM\Column(name="id", type="integer")* @ORM\Id* @ORM\GeneratedValue(strategy="AUTO")*/private $id;/*** @var int** @ORM\Column(name="numero_riga", type="integer")*/private $numeroRiga;/*** @ORM\ManyToOne(targetEntity="App\Entity\Offerte", inversedBy="righe", cascade={"persist"})*/private $offerta;/*** @var string** @ORM\Column(name="macro_categoria", type="string", length=255, nullable=true)*/private $macroCategoria;/*** @var string** @ORM\Column(name="codice_articolo", type="string", length=255, nullable=true)*/private $codiceArticolo;/*** @var string** @ORM\Column(name="descrizione_articolo", type="string", length=255, nullable=true)*/private $descrizioneArticolo;/*** @var string** @ORM\Column(name="descrizione_secondaria_articolo", type="string", length=255, nullable=true)*/private $descrizioneSecondariaArticolo;/*** @var string** @ORM\Column(name="marca", type="string", length=255, nullable=true)*/private $marca;/*** @var string** @ORM\Column(name="um", type="string", length=255, nullable=true)*/private $um;/*** @var string** @ORM\Column(name="stringa_sconti", type="string", length=255, nullable=true)*/private $stringaSconti;/*** @var string** @ORM\Column(name="qta", type="decimal", precision=18, scale=5, nullable=true)*/private $qta;/*** @var string** @ORM\Column(name="nota_riga", type="text", nullable=true)*/private $notaRiga;/*** @var string** @ORM\Column(name="nota_riga_aziendale", type="text", nullable=true)*/private $notaRigaAziendale;/*** @var string** @ORM\Column(name="nota_riga_modificabile_json", type="text", nullable=true)*/private $notaRigaModificabileJson;/*** @var string** @ORM\Column(name="netto_cad", type="decimal", precision=18, scale=5, nullable=true)*/private $nettoCad;/*** @var string** @ORM\Column(name="lordo_cad", type="decimal", precision=18, scale=5, nullable=true)*/private $lordoCad;/*** @var string** @ORM\Column(name="netto_totale", type="decimal", precision=18, scale=5, nullable=true)*/private $nettoTotale;/*** @var string** @ORM\Column(name="lordo_totale", type="decimal", precision=18, scale=5, nullable=true)*/private $lordoTotale;/*** @var string** @ORM\Column(name="imposta", type="decimal", precision=18, scale=5, nullable=true)*/private $imposta;/*** @var string** @ORM\Column(name="imponibile", type="decimal", precision=18, scale=5, nullable=true)*/private $imponibile;/*** @ORM\ManyToOne(targetEntity="App\Entity\MappaCategorieArticoli")* @ORM\JoinColumn(name="collegamento_mappa_categorie_articoli_id", referencedColumnName="id", onDelete="SET NULL")*/private $collegamentoMappaCategorieArticoli;/*** @ORM\ManyToOne(targetEntity="App\Entity\Varianti")* @ORM\JoinColumn(name="collegamento_variante_id", referencedColumnName="id", onDelete="SET NULL")*/private $collegamentoVariante;/*** @var string** @ORM\Column(name="codice_variante", type="string", length=255, nullable=true)*/private $codiceVariante;/*** @ORM\ManyToOne(targetEntity="User")* @ORM\JoinColumn(name="utente_creazione_id", referencedColumnName="id", onDelete="SET NULL")*/private $utenteCreazione;/*** @var string** @ORM\Column(name="codice_cat1", type="string", length=255, nullable=true)*/private $codiceCat1;/*** @var string** @ORM\Column(name="codice_cat2", type="string", length=255, nullable=true)*/private $codiceCat2;/*** @var string** @ORM\Column(name="codice_cat3", type="string", length=255, nullable=true)*/private $codiceCat3;/*** @var string** @ORM\Column(name="codice_cat4", type="string", length=255, nullable=true)*/private $codiceCat4;/*** @var string** @ORM\Column(name="codice_cat5", type="string", length=255, nullable=true)*/private $codiceCat5;/*** @var \DateTime** @ORM\Column(name="data_creazione", type="datetime")*/private $dataCreazione;/*** @var \DateTime** @ORM\Column(name="data_modifica", type="datetime")*/private $dataModifica;/*** @ORM\ManyToOne(targetEntity="Varianti")* @ORM\JoinColumn(name="variante_id", referencedColumnName="id", onDelete="SET NULL")*/private $variante;/*** @ORM\ManyToOne(targetEntity="Articoli")* @ORM\JoinColumn(name="articolo_id", referencedColumnName="id", onDelete="SET NULL")*/private $articolo;/*** @ORM\ManyToOne(targetEntity="User")* @ORM\JoinColumn(name="utente_modifica_id", referencedColumnName="id", onDelete="SET NULL")*/private $utenteModifica;/*** @var string** @ORM\Column(name="stato", type="string", length=255, nullable=true)*/private $stato;public function getId(): ?int{return $this->id;}public function setMacroCategoria(?string $macroCategoria): static{$this->macroCategoria = $macroCategoria;return $this;}public function getMacroCategoria(): ?string{return $this->macroCategoria;}public function setCodiceArticolo(?string $codiceArticolo): static{$this->codiceArticolo = $codiceArticolo;return $this;}public function getCodiceArticolo(): ?string{return $this->codiceArticolo;}public function setDescrizioneArticolo(?string $descrizioneArticolo): static{$this->descrizioneArticolo = $descrizioneArticolo;return $this;}public function getDescrizioneArticolo(): ?string{return $this->descrizioneArticolo;}public function setDescrizioneSecondariaArticolo(?string $descrizioneSecondariaArticolo): static{$this->descrizioneSecondariaArticolo = $descrizioneSecondariaArticolo;return $this;}public function getDescrizioneSecondariaArticolo(): ?string{return $this->descrizioneSecondariaArticolo;}public function setMarca(?string $marca): static{$this->marca = $marca;return $this;}public function getMarca(): ?string{return $this->marca;}public function setUm(?string $um): static{$this->um = $um;return $this;}public function getUm(): ?string{return $this->um;}public function setQta(?string $qta): static{$this->qta = $qta;return $this;}public function getQta(): ?string{return $this->qta;}public function setNotaRiga(?string $notaRiga): static{$this->notaRiga = $notaRiga;return $this;}public function getNotaRiga(): ?string{return $this->notaRiga;}public function setNotaRigaModificabileJson(?string $notaRigaModificabileJson): static{$this->notaRigaModificabileJson = $notaRigaModificabileJson;return $this;}public function getNotaRigaModificabileJson(): ?string{return $this->notaRigaModificabileJson;}public function setNettoCad(?string $nettoCad): static{$this->nettoCad = $nettoCad;return $this;}public function getNettoCad(): ?string{return $this->nettoCad;}public function setLordoCad(?string $lordoCad): static{$this->lordoCad = $lordoCad;return $this;}public function getLordoCad(): ?string{return $this->lordoCad;}public function setNettoTotale(?string $nettoTotale): static{$this->nettoTotale = $nettoTotale;return $this;}public function getNettoTotale(): ?string{return $this->nettoTotale;}public function setLordoTotale(?string $lordoTotale): static{$this->lordoTotale = $lordoTotale;return $this;}public function getLordoTotale(): ?string{return $this->lordoTotale;}public function setImposta(?string $imposta): static{$this->imposta = $imposta;return $this;}public function getImposta(): ?string{return $this->imposta;}public function setImponibile(?string $imponibile): static{$this->imponibile = $imponibile;return $this;}public function getImponibile(): ?string{return $this->imponibile;}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 setOfferta(?Offerte $offerta): static{$this->offerta = $offerta;return $this;}public function getOfferta(): ?Offerte{return $this->offerta;}public function setCollegamentoMappaCategorieArticoli(?MappaCategorieArticoli $collegamentoMappaCategorieArticoli): static{$this->collegamentoMappaCategorieArticoli = $collegamentoMappaCategorieArticoli;return $this;}public function getCollegamentoMappaCategorieArticoli(): ?MappaCategorieArticoli{return $this->collegamentoMappaCategorieArticoli;}public function setUtenteCreazione(?User $utenteCreazione): static{$this->utenteCreazione = $utenteCreazione;return $this;}public function getUtenteCreazione(): ?User{return $this->utenteCreazione;}public function setUtenteModifica(?User $utenteModifica): static{$this->utenteModifica = $utenteModifica;return $this;}public function getUtenteModifica(): ?User{return $this->utenteModifica;}public function setStringaSconti(?string $stringaSconti): static{$this->stringaSconti = $stringaSconti;return $this;}public function getStringaSconti(): ?string{return $this->stringaSconti;}public function setNumeroRiga(int $numeroRiga): static{$this->numeroRiga = $numeroRiga;return $this;}public function getNumeroRiga(): ?int{return $this->numeroRiga;}public function getVariante(): ?Varianti{return $this->variante;}public function setVariante(?Varianti $variante): static{$this->variante = $variante;return $this;}public function getArticolo(): ?Articoli{return $this->articolo;}public function setArticolo(?Articoli $articolo): static{$this->articolo = $articolo;return $this;}public function getCodiceVariante(): ?string{return $this->codiceVariante;}public function setCodiceVariante(?string $codiceVariante): static{$this->codiceVariante = $codiceVariante;return $this;}public function getCollegamentoVariante(): ?Varianti{return $this->collegamentoVariante;}public function setCollegamentoVariante(?Varianti $collegamentoVariante): static{$this->collegamentoVariante = $collegamentoVariante;return $this;}public function getCodiceCat1(): ?string{return $this->codiceCat1;}public function setCodiceCat1(?string $codiceCat1): static{$this->codiceCat1 = $codiceCat1;return $this;}public function getCodiceCat2(): ?string{return $this->codiceCat2;}public function setCodiceCat2(?string $codiceCat2): static{$this->codiceCat2 = $codiceCat2;return $this;}public function getCodiceCat3(): ?string{return $this->codiceCat3;}public function setCodiceCat3(?string $codiceCat3): static{$this->codiceCat3 = $codiceCat3;return $this;}public function getCodiceCat4(): ?string{return $this->codiceCat4;}public function setCodiceCat4(?string $codiceCat4): static{$this->codiceCat4 = $codiceCat4;return $this;}public function getCodiceCat5(): ?string{return $this->codiceCat5;}public function setCodiceCat5(?string $codiceCat5): static{$this->codiceCat5 = $codiceCat5;return $this;}public function getNotaRigaAziendale(): ?string{return $this->notaRigaAziendale;}public function setNotaRigaAziendale(?string $notaRigaAziendale): static{$this->notaRigaAziendale = $notaRigaAziendale;return $this;}public function getStato(): ?string{return $this->stato;}public function setStato(?string $stato): static{$this->stato = $stato;return $this;}}