|
@ -1417,9 +1417,11 @@ public class CompeteService implements ICompeteService { |
|
|
CompeteVideoExample competeVideoExample = new CompeteVideoExample(); |
|
|
CompeteVideoExample competeVideoExample = new CompeteVideoExample(); |
|
|
competeVideoExample.createCriteria().andProjectIdEqualTo(competeStartOrder.getProjectId()).andPlayerIdEqualTo(competeStartOrder.getPlayerId()); |
|
|
competeVideoExample.createCriteria().andProjectIdEqualTo(competeStartOrder.getProjectId()).andPlayerIdEqualTo(competeStartOrder.getPlayerId()); |
|
|
List<CompeteVideo> competeVideos = competeVideoMapper.selectByExample(competeVideoExample); |
|
|
List<CompeteVideo> competeVideos = competeVideoMapper.selectByExample(competeVideoExample); |
|
|
CompeteVideo competeVideo = competeVideos.get(0); |
|
|
if(competeVideos.size()>0) { |
|
|
String path = competeVideo.getVideoUrl(); |
|
|
CompeteVideo competeVideo = competeVideos.get(0); |
|
|
mes.setVideoUrl(path); |
|
|
String path = competeVideo.getVideoUrl(); |
|
|
|
|
|
mes.setVideoUrl(path); |
|
|
|
|
|
} |
|
|
}); |
|
|
}); |
|
|
return countScoreCurrentSites; |
|
|
return countScoreCurrentSites; |
|
|
} |
|
|
} |
|
|