|
@@ -264,18 +264,20 @@ public class LaserService {
|
|
|
return null ;
|
|
|
}
|
|
|
|
|
|
- public HashMap<String, JSONObject> list(List<String> sceneNumList) {
|
|
|
+ public HashMap<String, JSONObject> list(List<String> sceneNumList,Integer sceneSource) {
|
|
|
LaserSceneParam newParam = new LaserSceneParam();
|
|
|
newParam.setPageNum(1);
|
|
|
newParam.setPageSize(sceneNumList.size());
|
|
|
+ newParam.setSceneSource(sceneSource);
|
|
|
newParam.setSceneCodes(sceneNumList);
|
|
|
return this.list(newParam);
|
|
|
}
|
|
|
- public HashMap<String, JSONObject> list(List<String> sceneNumList,Integer status) {
|
|
|
+ public HashMap<String, JSONObject> list(List<String> sceneNumList,Integer status,Integer sceneSource) {
|
|
|
LaserSceneParam newParam = new LaserSceneParam();
|
|
|
newParam.setPageNum(1);
|
|
|
newParam.setPageSize(sceneNumList.size());
|
|
|
newParam.setSceneCodes(sceneNumList);
|
|
|
+ newParam.setSceneSource(sceneSource);
|
|
|
newParam.setStatus(status);
|
|
|
return this.list(newParam);
|
|
|
}
|