httpClient->postJson('menu/create', $json, ['agentid' => $this->agentId]); } /** * 获取菜单 * * @return array */ public function get(): array { return $this->httpClient->get('menu/get', ['agentid' => $this->agentId]); } /** * 删除菜单 * * @return array */ public function delete(): array { return $this->httpClient->get('menu/delete', ['agentid' => $this->agentId]); } }