直播
This commit is contained in:
@@ -9,6 +9,7 @@ public class ImDataRes {
|
||||
|
||||
@Data
|
||||
public static class ImData {
|
||||
// 通话状态,1 取消 2 拒绝 3 超时 4 已通话
|
||||
private Integer callType;
|
||||
private Integer status;
|
||||
private Long fromUid;
|
||||
|
||||
@@ -13,7 +13,7 @@ public class ImMsgGen {
|
||||
ImDataRes imDataRes = new ImDataRes();
|
||||
imDataRes.setType(15);
|
||||
ImDataRes.ImData imData = new ImDataRes.ImData();
|
||||
imData.setCallType(1);
|
||||
imData.setCallType(1); // 通话状态,1 取消 2 拒绝 3 超时 4 已通话
|
||||
imData.setStatus(status);
|
||||
imData.setFromUid(from);
|
||||
imData.setToUid(to);
|
||||
@@ -21,4 +21,5 @@ public class ImMsgGen {
|
||||
imDataRes.setData(imData);
|
||||
return imDataRes;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user