|
@@ -357,16 +357,18 @@ public class LaserService {
|
|
|
}
|
|
|
|
|
|
|
|
|
- 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.setSceneSource(sceneSource);
|
|
|
newParam.setPageSize(sceneNumList.size());
|
|
|
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.setSceneSource(sceneSource);
|
|
|
newParam.setPageSize(sceneNumList.size());
|
|
|
newParam.setSceneCodes(sceneNumList);
|
|
|
newParam.setStatus(status);
|