<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* RequestForProposalResponseDocumentAnswer
*
* @ORM\Table(name="request_for_proposal_response_document_answer")
* @ORM\Entity(repositoryClass="App\Repository\RequestForProposalResponseDocumentAnswerRepository")
*/
class RequestForProposalResponseDocumentAnswer
{
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="responseDocumentAnswers")
* @ORM\JoinColumn(name="rfp_id", referencedColumnName="id")
*/
private $rfp;
/**
* @ORM\Column(name="codeops", type="string", length=255)
*/
private $codeops;
/**
* @ORM\Column(name="response_document_id", type="integer", nullable=true)
*/
private $responseDocumentId;
/**
* @ORM\Column(name="s3_path", type="string", length=255, nullable=true)
*/
private $s3Path;
/**
* 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 rfp
*
* @return RequestForProposalInterest
*/
public function getRfp()
{
return $this->rfp;
}
/**
* Set rfp
*
* @param RequestForProposal $rfp
*
* @return RequestForProposalInterest
*/
public function setRfp(RequestForProposal $rfp = null)
{
$this->rfp = $rfp;
return $this;
}
/**
* @return integer
*/
public function getResponseDocumentId()
{
return $this->responseDocumentId;
}
/**
* @param integer $responseDocumentId
* @return RequestForProposalResponseDocumentAnswer
*/
public function setResponseDocumentId($responseDocumentId)
{
$this->responseDocumentId = $responseDocumentId;
return $this;
}
/**
* @return null|string
*/
public function getS3Path()
{
return $this->s3Path;
}
/**
* @param string $s3Path
*/
public function setS3Path($s3Path)
{
$this->s3Path = $s3Path;
}
}