|
@@ -473,6 +473,13 @@ public class SceneEditInfoServiceImpl extends ServiceImpl<SceneEditInfoMapper, S
|
|
|
//马赛克列表
|
|
|
// sceneInfoVO.setMosaicList(this.getMosaicList(num));
|
|
|
|
|
|
+ long count = sceneService.count(new LambdaQueryWrapper<Scene>().eq(Scene::getNum, num).ne(Scene::getSubgroup, 0));
|
|
|
+ if(count > 0){
|
|
|
+ sceneInfoVO.setHasHighAndLow(CommonStatus.YES.code());
|
|
|
+ }else{
|
|
|
+ sceneInfoVO.setHasHighAndLow(CommonStatus.NO.code());
|
|
|
+ }
|
|
|
+
|
|
|
return sceneInfoVO;
|
|
|
}
|
|
|
|