select(); return $result; } public function findHomecontact($id) { $result = $this->where(['homecontact_id'=>$id])->find(); return $result; } public function updateHomecontact($id, $data) { $result = $this->where(['homecontact_id'=>$id])->update($data); return $result; } }