<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;/** * RequestForProposalInterest * * @ORM\Table(name="request_for_proposal_interest") * @ORM\Entity(repositoryClass="App\Repository\RequestForProposalInterestRepository") */class RequestForProposalInterest{ use TimestampableEntity; use BlameableEntity; /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @ORM\ManyToOne(targetEntity="App\Entity\RequestForProposal", inversedBy="interests") * @ORM\JoinColumn(name="rfp_id", referencedColumnName="id") */ private $rfp; /** * @ORM\Column(name="codeops", type="string", length=255) */ private $codeops; /** * @ORM\Column(name="document_id", type="integer", nullable=true) */ private $documentId; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Get uid * * @return string */ public function getCodeops() { return $this->codeops; } /** * Set codeops * * @param string $codeops * * @return RequestForProposalInterest */ public function setCodeops($codeops) { $this->codeops = $codeops; return $this; } /** * Get document * * @return RequestForProposalInterest */ public function getRfp() { return $this->rfp; } /** * Set document * * @param RequestForProposal $rfp * * @return RequestForProposalInterest */ public function setRfp(RequestForProposal $rfp = null) { $this->rfp = $rfp; return $this; } /** * @return integer */ public function getDocumentId() { return $this->documentId; } /** * @param integer $documentId * @return RequestForProposalInterest */ public function setDocumentId($documentId) { $this->documentId = $documentId; return $this; }}