|
@@ -59,7 +59,7 @@ public class RemoteControlServiceImpl implements IRemoteControlService {
|
|
|
private PartyMeetingImageMapper partyMeetingImageMapper;
|
|
private PartyMeetingImageMapper partyMeetingImageMapper;
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
- public AjaxResult filePlay(Long id, Integer currentPage, Integer deviceId) {
|
|
|
|
|
|
|
+ public AjaxResult filePlay(Long id, Integer currentPage, Integer deviceId, Integer isStart) {
|
|
|
// 当前操作用户
|
|
// 当前操作用户
|
|
|
Integer index = currentPage - 1;
|
|
Integer index = currentPage - 1;
|
|
|
List<PartyMeetingFollow> imageList = partyMeetingFollowMapper.selectPartyMeetingFollowByFId(id,2);
|
|
List<PartyMeetingFollow> imageList = partyMeetingFollowMapper.selectPartyMeetingFollowByFId(id,2);
|
|
@@ -68,6 +68,7 @@ public class RemoteControlServiceImpl implements IRemoteControlService {
|
|
|
nettyMessage.setIndex(index);
|
|
nettyMessage.setIndex(index);
|
|
|
nettyMessage.setMeetingId(imageList.get(index).getMeetingId());
|
|
nettyMessage.setMeetingId(imageList.get(index).getMeetingId());
|
|
|
nettyMessage.setImageUrl(imageUrl);
|
|
nettyMessage.setImageUrl(imageUrl);
|
|
|
|
|
+ nettyMessage.setIsStart(isStart);
|
|
|
String reqParam = JSON.toJSONString(nettyMessage);
|
|
String reqParam = JSON.toJSONString(nettyMessage);
|
|
|
PushMessage pushMessage = new PushMessage();
|
|
PushMessage pushMessage = new PushMessage();
|
|
|
pushMessage.setMessageType(PushMessageType.CONTROL_FILE_START.getValue());
|
|
pushMessage.setMessageType(PushMessageType.CONTROL_FILE_START.getValue());
|