memberRepository = $memberRepository; $this->memberInfoRepository = $memberInfoRepository; } public function getMemberNums($where) { $time_condition = []; if (array_has($where, 'time_condition')) { $time_condition = $where['time_condition']; unset($where['time_condition']); } return $this->memberRepository->getMemberNumByTime($where, $time_condition); } public function getMemberNumsGroup($where, $member_where, $fields, $group_by, $order_by = '', $limit = '') { $rst = $this->memberInfoRepository->getMemberNumsByGroup($where, $member_where, $fields, $group_by, $order_by, $limit); return $rst->toArray(); } public function getJobSeekersByGroup($where, $where_str, $edu_fields, $edu_group) { return $this->memberRepository->getJobSeekersByGroup($where, $where_str, $edu_fields, $edu_group); } }