id = $id; return $this; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set transactionId * * @param integer $transactionId * @return EntityMigrationTransaction */ public function setTransactionId($transactionId) { $this->transactionId = $transactionId; return $this; } /** * Get transactionId * * @return integer */ public function getTransactionId() { return $this->transactionId; } /** * Set branchId * * @param integer $branchId * @return EntityMigrationTransaction */ public function setBranchId($branchId) { $this->branchId = $branchId; return $this; } /** * Get branchId * * @return integer */ public function getBranchId() { return $this->branchId; } /** * Set action * * @param string $action * @return EntityMigrationTransaction */ public function setAction($action) { $this->action = $action; return $this; } /** * Get action * * @return string */ public function getAction() { return $this->action; } /** * Set itemId * * @param string $itemId * @return EntityMigrationTransaction */ public function setItemId($itemId) { $this->itemId = $itemId; return $this; } /** * Get itemId * * @return string */ public function getItemId() { return $this->itemId; } /** * Set origId * * @param string $origId * @return EntityMigrationTransaction */ public function setOrigId($origId) { $this->origId = $origId; return $this; } /** * Get origId * * @return string */ public function getOrigId() { return $this->origId; } /** * Set destId * * @param string $destId * @return EntityMigrationTransaction */ public function setDestId($destId) { $this->destId = $destId; return $this; } /** * Get destId * * @return string */ public function getDestId() { return $this->destId; } /** * Set statusId * * @param boolean $statusId * @return EntityMigrationTransaction */ public function setStatusId($statusId) { $this->statusId = $statusId; return $this; } /** * Get statusId * * @return boolean */ public function getStatusId() { return $this->statusId; } /** * Set timeInsert * * @param \DateTime $timeInsert * @return EntityMigrationTransaction */ public function setTimeInsert($timeInsert) { $this->timeInsert = $timeInsert; return $this; } /** * Get timeInsert * * @return \DateTime */ public function getTimeInsert() { return $this->timeInsert; } /** * Set timeUpdate * * @param \DateTime $timeUpdate * @return EntityMigrationTransaction */ public function setTimeUpdate($timeUpdate) { $this->timeUpdate = $timeUpdate; return $this; } /** * Get timeUpdate * * @return \DateTime */ public function getTimeUpdate() { return $this->timeUpdate; } }