|
@@ -95,12 +95,13 @@ public class StStationController {
|
|
|
@ApiImplicitParam(name = "longitudeLeftUp", value = "左上经度", dataTypeClass = String.class),
|
|
|
@ApiImplicitParam(name = "latitudeLeftUp", value = "左上维度", dataTypeClass = String.class),
|
|
|
@ApiImplicitParam(name = "longitudeRightDown", value = "右下经度", dataTypeClass = String.class),
|
|
|
- @ApiImplicitParam(name = "latitudeRightDown", value = "右下维度", dataTypeClass = String.class)
|
|
|
+ @ApiImplicitParam(name = "latitudeRightDown", value = "右下维度", dataTypeClass = String.class),
|
|
|
+ @ApiImplicitParam(name = "orgId", value = "机构ID", dataTypeClass = Long.class)
|
|
|
}
|
|
|
)
|
|
|
- public Result<BigScreenStatisticsVO> selectBigScreenStatisticsByLongitudeLatitude(String longitudeLeftUp, String latitudeLeftUp,String longitudeRightDown,String latitudeRightDown) {
|
|
|
+ public Result<BigScreenStatisticsVO> selectBigScreenStatisticsByLongitudeLatitude(String longitudeLeftUp, String latitudeLeftUp,String longitudeRightDown,String latitudeRightDown,Long orgId) {
|
|
|
try {
|
|
|
- BigScreenStatisticsVO bigScreenStatisticsVO = stStationService.selectBigScreenStatisticsByLongitudeLatitude(longitudeLeftUp,latitudeLeftUp,longitudeRightDown,latitudeRightDown);
|
|
|
+ BigScreenStatisticsVO bigScreenStatisticsVO = stStationService.selectBigScreenStatisticsByLongitudeLatitude(longitudeLeftUp,latitudeLeftUp,longitudeRightDown,latitudeRightDown,orgId);
|
|
|
return Result.success(bigScreenStatisticsVO);
|
|
|
} catch (Exception e) {
|
|
|
log.error("站点统计查询出现异常",e);
|