src/Entity/ActividadEconomica.php line 14
<?php/** @author Guerby Duval <info@tranzaksyon.com>* @link https://tranzaksyon.com* @copyright You are not allowed to remove this author "Guerby Duval <info@tranzaksyon.com>", the link "https://tranzaksyon.com" neither this copyright.*/namespace App\Entity;use App\Repository\ActividadEconomicaRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: ActividadEconomicaRepository::class)]class ActividadEconomica{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 10)]private ?string $codigo = null;#[ORM\Column(length: 255)]private ?string $descripcion = null;#[ORM\ManyToOne(inversedBy: 'actividadEconomicas')]#[ORM\JoinColumn(nullable: false)]private ?SriInfo $sriInfo = null;public function getId(): ?int{return $this->id;}public function getCodigo(): ?string{return $this->codigo;}public function setCodigo(string $codigo): static{$this->codigo = $codigo;return $this;}public function getDescripcion(): ?string{return $this->descripcion;}public function setDescripcion(string $descripcion): static{$this->descripcion = $descripcion;return $this;}public function getSriInfo(): ?SriInfo{return $this->sriInfo;}public function setSriInfo(?SriInfo $sriInfo): static{$this->sriInfo = $sriInfo;return $this;}}