|
@@ -176,7 +176,7 @@ public class SceneServiceImpl implements ISceneService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void copyScene(String sceneNum,String userName) throws Exception {
|
|
|
+ public void copyScene(String sceneNum, String oldNum, String userName) throws Exception {
|
|
|
if(StringUtils.isEmpty(sceneNum)){
|
|
|
throw new BusinessException(ErrorCode.FAILURE_CODE_3001);
|
|
|
}
|
|
@@ -190,6 +190,7 @@ public class SceneServiceImpl implements ISceneService {
|
|
|
Long sceneId = scenePlus.getId();
|
|
|
Long newSceneId = null;
|
|
|
|
|
|
+
|
|
|
if(scenePlus != null){ //v4场景复制
|
|
|
log.info("场景复制--V4--OldNum:{},oldTitle:{},newNum:{}", scenePlus.getNum(),scenePlus.getTitle(),newNum);
|
|
|
|