|
@@ -33,8 +33,9 @@ public class VoiceCallbackController {
|
|
|
@PostMapping("/voice/callback")
|
|
|
@ApiOperation(tags = {"语音通知回调接口"},value = "语音通知回调接口")
|
|
|
public Map<String,Object> callback(@RequestBody VoiceCallbackParams voiceCallbackParams) {
|
|
|
- String callid = voiceCallbackParams.getCallid();
|
|
|
- String orderId = (String) redisUtil.hget(RedisKeyConstant.VOICE_CALLBACK_INFO, callid);
|
|
|
+ String callId = voiceCallbackParams.getCallid();
|
|
|
+ System.out.println("callback:callId==" + callId);
|
|
|
+ String orderId = (String) redisUtil.hget(RedisKeyConstant.VOICE_CALLBACK_INFO, callId);
|
|
|
String mobile = voiceCallbackParams.getMobile();
|
|
|
|
|
|
Integer status = null;
|