core_wechat_reply_service = new CoreWechatReplyService(); } /** *关键字回复列表 * @return array */ public function getKeywordPage(array $data = []){ return $this->core_wechat_reply_service->getKeywordPage($this->site_id, $data); } /** * 获取关键词回复信息 * @param int $id * @return array */ public function getKeywordInfo(int $id){ return $this->core_wechat_reply_service->getKeywordInfo($this->site_id, $id); } /** * 新增关键词回复 * @param array $data * @return true */ public function addKeyword(array $data){ return $this->core_wechat_reply_service->addKeyword($this->site_id, $data); } /** * 更新关键词回复 * @param int $id * @param array $data * @return WechatReply */ public function editKeyword(int $id, array $data){ return $this->core_wechat_reply_service->editKeyword($this->site_id, $id, $data); } /** * 删除关键词回复 * @return void|null */ public function delKeyword(int $id){ return $this->core_wechat_reply_service->delKeyword($this->site_id, $id); } /** * 获取默认回复 * @return void|null */ public function getDefault(){ return $this->core_wechat_reply_service->delKeyword($this->site_id); } /** * 更新默认回复 * @param array $data * @return void|null */ public function editDefault(array $data){ return $this->core_wechat_reply_service->editDefault($this->site_id, $data); } /** * 获取关注回复 * @return array */ public function getSubscribe(){ return $this->core_wechat_reply_service->getSubscribe($this->site_id); } /** * 更新关注回复 * @param array $data * @return void|null */ public function editSubscribe(array $data){ return $this->core_wechat_reply_service->editSubscribe($this->site_id, $data); } }