src/Entity/RequestForProposalResponseDocumentAnswer.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * RequestForProposalResponseDocumentAnswer
  6.  *
  7.  * @ORM\Table(name="request_for_proposal_response_document_answer")
  8.  * @ORM\Entity(repositoryClass="App\Repository\RequestForProposalResponseDocumentAnswerRepository")
  9.  */
  10. class RequestForProposalResponseDocumentAnswer
  11. {
  12.     use TimestampableEntity;
  13.     use BlameableEntity;
  14.     /**
  15.      * @var int
  16.      *
  17.      * @ORM\Column(name="id", type="integer")
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="AUTO")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @ORM\ManyToOne(targetEntity="App\Entity\RequestForProposal", inversedBy="responseDocumentAnswers")
  24.      * @ORM\JoinColumn(name="rfp_id", referencedColumnName="id")
  25.      */
  26.     private $rfp;
  27.     /**
  28.      * @ORM\Column(name="codeops", type="string", length=255)
  29.      */
  30.     private $codeops;
  31.     /**
  32.      * @ORM\Column(name="response_document_id", type="integer", nullable=true)
  33.      */
  34.     private $responseDocumentId;
  35.     /**
  36.      * @ORM\Column(name="s3_path", type="string", length=255, nullable=true)
  37.      */
  38.     private $s3Path;
  39.     /**
  40.      * Get id
  41.      *
  42.      * @return integer
  43.      */
  44.     public function getId()
  45.     {
  46.         return $this->id;
  47.     }
  48.     /**
  49.      * Get uid
  50.      *
  51.      * @return string
  52.      */
  53.     public function getCodeops()
  54.     {
  55.         return $this->codeops;
  56.     }
  57.     /**
  58.      * Set codeops
  59.      *
  60.      * @param string $codeops
  61.      *
  62.      * @return RequestForProposalInterest
  63.      */
  64.     public function setCodeops($codeops)
  65.     {
  66.         $this->codeops $codeops;
  67.         return $this;
  68.     }
  69.     /**
  70.      * Get rfp
  71.      *
  72.      * @return RequestForProposalInterest
  73.      */
  74.     public function getRfp()
  75.     {
  76.         return $this->rfp;
  77.     }
  78.     /**
  79.      * Set rfp
  80.      *
  81.      * @param RequestForProposal $rfp
  82.      *
  83.      * @return RequestForProposalInterest
  84.      */
  85.     public function setRfp(RequestForProposal $rfp null)
  86.     {
  87.         $this->rfp $rfp;
  88.         return $this;
  89.     }
  90.     /**
  91.      * @return integer
  92.      */
  93.     public function getResponseDocumentId()
  94.     {
  95.         return $this->responseDocumentId;
  96.     }
  97.     /**
  98.      * @param integer $responseDocumentId
  99.      * @return RequestForProposalResponseDocumentAnswer
  100.      */
  101.     public function setResponseDocumentId($responseDocumentId)
  102.     {
  103.         $this->responseDocumentId $responseDocumentId;
  104.         return $this;
  105.     }
  106.     /**
  107.      * @return null|string
  108.      */
  109.     public function getS3Path()
  110.     {
  111.         return $this->s3Path;
  112.     }
  113.     /**
  114.      * @param string $s3Path
  115.      */
  116.     public function setS3Path($s3Path)
  117.     {
  118.         $this->s3Path $s3Path;
  119.     }
  120. }