|
@@ -91,6 +91,10 @@ public class BoatController extends CommonController {
|
|
|
if (!StringUtils.isBlank(req.getMmsi()) && req.getMmsi().length() < 6) {
|
|
|
throw new EnumException("mmsi不足六位");
|
|
|
}
|
|
|
+ // 判断只能查当前在浦东范围内有AIS信号的船
|
|
|
+ if(!commonService.checkInportByMmsi(req.getMmsi())){
|
|
|
+ throw new EnumException("该船舶不在辖区内");
|
|
|
+ }
|
|
|
List<ShipDataVo> voList = commonService.selectBoatInfoList(req);
|
|
|
ResultRes resultRes = ResultRes.encapsulationResult(req.getPageIndex(),
|
|
|
req.getPageSize(),
|
|
@@ -127,6 +131,10 @@ public class BoatController extends CommonController {
|
|
|
}
|
|
|
String paramJsonData = getParamJsonData(vo.getData());
|
|
|
ReportInfoRequest req = JSONObject.parseObject(paramJsonData, ReportInfoRequest.class);
|
|
|
+ // 判断只能查当前在浦东范围内有AIS信号的船
|
|
|
+ if(!commonService.checkInportByShipId(req.getShipId())){
|
|
|
+ throw new EnumException("该船舶不在辖区内");
|
|
|
+ }
|
|
|
List<BoatReportInfoVo> voList = commonService.selectBoatReportInfoList(req);
|
|
|
ResultRes resultRes = ResultRes.encapsulationResult(req.getPageIndex(),
|
|
|
req.getPageSize(),
|