src/Entity/Consegna.php line 14
<?phpnamespace App\Entity;use App\Model\Colonna;use Doctrine\ORM\Mapping as ORM;/*** Consegna** @ORM\Table(name="consegna")* @ORM\Entity(repositoryClass="App\Repository\ConsegnaRepository")*/class Consegna{/*** @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="descrizione", type="string", length=255)*/private $descrizione;public function getId(): ?int{return $this->id;}public function setCodice(string $codice): static{$this->codice = $codice;return $this;}public function getCodice(): ?string{return $this->codice;}public function setDescrizione(string $descrizione): static{$this->descrizione = $descrizione;return $this;}public function getDescrizione(): ?string{return $this->descrizione;}}