|
@@ -19,6 +19,7 @@ import com.fdkankan.scene.service.ISceneService;
|
|
|
import com.fdkankan.scene.service.impl.IFdkkLaserServiceImpl.Result;
|
|
|
import com.fdkankan.scene.vo.SceneEditInfoVO;
|
|
|
import com.fdkankan.scene.vo.SceneVO;
|
|
|
+import com.fdkankan.scene.vo.UploadPanoramaVO;
|
|
|
import com.google.common.collect.Lists;
|
|
|
import com.sun.org.apache.bcel.internal.generic.RETURN;
|
|
|
import java.util.ArrayList;
|
|
@@ -102,14 +103,17 @@ public class TestController {
|
|
|
|
|
|
// folderService.list();
|
|
|
|
|
|
- long aaaaaaa = redisUtil.incr("aaaaaaa", 1);
|
|
|
+// long aaaaaaa = redisUtil.incr("aaaaaaa", 1);
|
|
|
|
|
|
// String test = "123";
|
|
|
// if(test.equals("123")){
|
|
|
// throw new BusinessException(ErrorCode.FAILURE_CODE_5005);
|
|
|
// }
|
|
|
|
|
|
- return null;
|
|
|
+ ArrayList<String> strings = new ArrayList<>();
|
|
|
+ strings.add("1.jpg");
|
|
|
+ strings.add("2.jpg");
|
|
|
+ return ResultData.ok(new UploadPanoramaVO(5, strings));
|
|
|
|
|
|
}
|
|
|
|