|
@@ -414,12 +414,16 @@ public class BuildSceneServiceImpl implements IBuildSceneService {
|
|
|
void uploadFreespace(String num, String path, Map<String, String> map){
|
|
|
String plyPath = path + "/results/laserData/cover/final_freespace.ply";
|
|
|
String pngPath = path + "/results/laserData/cover/final_freespace.png";
|
|
|
+ String infoJsonPath = path + "/results/laserData/cover/info.json";
|
|
|
if(FileUtil.exist(plyPath)){
|
|
|
map.put(plyPath, String.format(UploadFilePath.IMG_VIEW_PATH, num) + "cover/" + FileUtil.getName(plyPath));
|
|
|
}
|
|
|
if(FileUtil.exist(pngPath)){
|
|
|
map.put(pngPath, String.format(UploadFilePath.IMG_VIEW_PATH, num) + "cover/" + FileUtil.getName(pngPath));
|
|
|
}
|
|
|
+ if(FileUtil.exist(infoJsonPath)){
|
|
|
+ map.put(infoJsonPath, String.format(UploadFilePath.IMG_VIEW_PATH, num) + "cover/" + FileUtil.getName(infoJsonPath));
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
private void sendMqForBcgn(String num){
|