|
|
@@ -54,6 +54,7 @@ public class CaseDownService {
|
|
|
public static String caseFilesInfoUrl = "/fusion/caseFiles/info?filesId=";
|
|
|
public static String fusionAndSceneTypeSceneUrl = "/case/getFusionAndScene?caseId=%s&type=scene";
|
|
|
public static String fusionAndSceneTypeFusionUrl = "/case/getFusionAndScene?caseId=%s&type=fusion";
|
|
|
+ public static String systemSettingListUrl = "/systemSetting/list";
|
|
|
|
|
|
public static String laserData = "/laser/dataset/%s/getDataSet";
|
|
|
public static String laserDataSetAndControlPoint = "/laser/4dage/%s/getDataSetAndControlPoint";
|
|
|
@@ -75,6 +76,8 @@ public class CaseDownService {
|
|
|
ICaseFilesService caseFilesService;
|
|
|
@Autowired
|
|
|
ICaseVideoFolderService caseVideoFolderService;
|
|
|
+ @Autowired
|
|
|
+ ISystemSettingService systemSettingService;
|
|
|
|
|
|
@Autowired
|
|
|
RedisUtil redisUtil;
|
|
|
@@ -202,8 +205,7 @@ public class CaseDownService {
|
|
|
}
|
|
|
jsonObject.put(basePath+caseVideoFolderUrl+caseId, ResultData.ok(allList));
|
|
|
|
|
|
-
|
|
|
-
|
|
|
+ jsonObject.put(basePath+systemSettingListUrl, ResultData.ok(systemSettingService.list()));
|
|
|
|
|
|
CaseParam param = new CaseParam();
|
|
|
param.setCaseId(caseId);
|