From 9f1c5b9cc975cad33e1bf71cd27d02d230b82688 Mon Sep 17 00:00:00 2001 From: Ramon Gutierrez Date: Mon, 11 Feb 2019 18:41:05 +0800 Subject: [PATCH] Add JORejection entity #183 --- src/Entity/JORejection.php | 139 +++++++++++++++++++++++++++++++++++++ 1 file changed, 139 insertions(+) create mode 100644 src/Entity/JORejection.php diff --git a/src/Entity/JORejection.php b/src/Entity/JORejection.php new file mode 100644 index 00000000..92b559fe --- /dev/null +++ b/src/Entity/JORejection.php @@ -0,0 +1,139 @@ +id; + } + + public function getDateCreate() + { + return $this->date_create; + } + + public function setDateCreate(DateTime $date_create) + { + $this->date_create = $date_create; + return $this; + } + + public function getUser() + { + return $this->user; + } + + public function setUser(User $user) + { + $this->user = $user; + return $this; + } + + public function getHub() + { + return $this->user; + } + + public function setHub(Hub $hub) + { + $this->hub = $hub; + return $this; + } + + public function getJobOrder() + { + return $this->user; + } + + public function setJobOrder(JobOrder $job_order) + { + $this->job_order = $job_order; + return $this; + } + + public function getReason() + { + return $this->reason; + } + + public function setReason($reason) + { + $this->reason = $reason; + return $this; + } + + public function getRemarks() + { + return $this->remarks; + } + + public function setRemarks($remarks) + { + $this->remarks = $remarks; + return $this; + } + + public function getContactPerson() + { + return $this->contact_person; + } + + public function setContactPerson($contact_person) + { + $this->contact_person = $contact_person; + return $this; + } +}