|
@@ -183,7 +183,8 @@ public class ProjectSceneGpsServiceImpl extends ServiceImpl<IProjectSceneGpsMapp
|
|
|
if(param.getNeedPage()){
|
|
|
return PageInfo.PageInfo(this.getBaseMapper().listGps(new Page<>(param.getPageNum(),param.getPageSize()) ,param));
|
|
|
}
|
|
|
- List<SceneGpsDbVp> sceneGpsDbVps = this.getBaseMapper().listGps(param);
|
|
|
+ Page<SceneGpsDbVp> sceneGpsDbVpPage = this.getBaseMapper().listGps(new Page<>(1, Integer.MAX_VALUE), param);
|
|
|
+ List<SceneGpsDbVp> sceneGpsDbVps = sceneGpsDbVpPage.getRecords();
|
|
|
if(param.getType() == 1){
|
|
|
return sceneGpsDbVps;
|
|
|
}
|