id; } /** * @param int $id */ public function setId($id) { $this->id = $id; } /** * Set rev * * @param integer $rev * * @return ViewAudit */ public function setRev($rev) { $this->rev = $rev; return $this; } /** * Get rev * * @return integer */ public function getRev() { return $this->rev; } /** * Set createDate * * @param \DateTime $createDate * * @return ViewAudit */ public function setCreateDate($createDate) { $this->createDate = $createDate; return $this; } /** * Get createDate * * @return \DateTime */ public function getCreateDate() { return $this->createDate; } /** * Set updateDate * * @param \DateTime $updateDate * * @return ViewAudit */ public function setUpdateDate($updateDate) { $this->updateDate = $updateDate; return $this; } /** * Get updateDate * * @return \DateTime */ public function getUpdateDate() { return $this->updateDate; } /** * Set revType * * @param string $revType * * @return ViewAudit */ public function setRevType($revType) { $this->revType = $revType; return $this; } /** * Get revType * * @return string */ public function getRevType() { return $this->revType; } /** * Set organizationId * * @param integer $organizationId * * @return ViewAudit */ public function setOrganizationId($organizationId) { $this->organizationId = $organizationId; return $this; } /** * Get organizationId * * @return integer */ public function getOrganizationId() { return $this->organizationId; } /** * Set tableName * * @param string $tableName * * @return ViewAudit */ public function setTableName($tableName) { $this->tableName = $tableName; return $this; } /** * Get tableName * * @return string */ public function getTableName() { return $this->tableName; } /** * Set createdBy * * @param \AppBundle\Entity\AccessAndFunction\Access $createdBy * * @return ViewAudit */ public function setCreatedBy(\AppBundle\Entity\AccessAndFunction\Access $createdBy = null) { $this->createdBy = $createdBy; return $this; } /** * Get createdBy * * @return \AppBundle\Entity\AccessAndFunction\Access */ public function getCreatedBy() { return $this->createdBy; } /** * Set updatedBy * * @param \AppBundle\Entity\AccessAndFunction\Access $updatedBy * * @return ViewAudit */ public function setUpdatedBy(\AppBundle\Entity\AccessAndFunction\Access $updatedBy = null) { $this->updatedBy = $updatedBy; return $this; } /** * Get updatedBy * * @return \AppBundle\Entity\AccessAndFunction\Access */ public function getUpdatedBy() { return $this->updatedBy; } /** * Get identifier * * @return integer */ public function getIdentifier() { return $this->identifier; } }