修正无医生数据
This commit is contained in:
@@ -4,6 +4,7 @@ namespace Extend\TencentIm;
|
||||
|
||||
use App\Constants\HttpEnumCode;
|
||||
use App\Exception\BusinessException;
|
||||
use GuzzleHttp\Exception\GuzzleException;
|
||||
use Hyperf\Snowflake\IdGeneratorInterface;
|
||||
use Hyperf\Utils\ApplicationContext;
|
||||
|
||||
@@ -69,6 +70,7 @@ class Message extends Base
|
||||
* 如聊天类型。json格式
|
||||
* order_inquiry_id
|
||||
* inquiry_type
|
||||
* message_type 消息类型(1:系统发送 其余:用户发送)
|
||||
*/
|
||||
'CloudCustomData' => "",
|
||||
|
||||
@@ -76,7 +78,14 @@ class Message extends Base
|
||||
|
||||
}
|
||||
|
||||
public function sendMessage(array $arg){
|
||||
/**
|
||||
* 发送消息
|
||||
* @param array $arg
|
||||
* @return bool
|
||||
* @throws GuzzleException
|
||||
*/
|
||||
public function sendMessage(array $arg): bool
|
||||
{
|
||||
|
||||
try {
|
||||
// 合并发送参数
|
||||
@@ -86,9 +95,9 @@ class Message extends Base
|
||||
"json"=> $arg
|
||||
];
|
||||
|
||||
dump($options);
|
||||
$path = $this->config['base_url'] . $this->version . "/openim/sendmsg?" . $this->buildRequestParams();
|
||||
return $this->postRequest($path,$options);
|
||||
$this->postRequest($path,$options);
|
||||
return true;
|
||||
}catch (\Exception $e) {
|
||||
throw new BusinessException($e->getMessage(), HttpEnumCode::SERVER_ERROR);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user