Commit 84060aeb by 南千昊

bug修复

parent 3d587fe7
......@@ -27,7 +27,7 @@ public class RtcRecordParam implements Serializable {
/**
* 房间id
*/
private Long channelId;
private String channelId;
/**
* 音视频类型
......
......@@ -41,7 +41,7 @@ public class WecloudImRtcRecordOperation extends WecloudImOperation {
}
if (rtcRecordRequest.getChannelId() != null){
param.put("channelId",rtcRecordRequest.getChannelId()+"");
param.put("channelId",rtcRecordRequest.getChannelId());
}
if (rtcRecordRequest.getCallType()!=null){
param.put("callType",rtcRecordRequest.getCallType()+"");
......
......@@ -24,7 +24,7 @@ public class RtcRecordRequest extends WebServiceRequest{
/**
* 房间id
*/
private Long channelId;
private String channelId;
/**
* 通话记录类型 1视频 2音频
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment