|
@@ -131,6 +131,7 @@ public class BoatController extends CommonController {
|
|
|
}
|
|
|
String paramJsonData = getParamJsonData(vo.getData());
|
|
|
ReportInfoRequest req = JSONObject.parseObject(paramJsonData, ReportInfoRequest.class);
|
|
|
+ log.info("ReportInfoRequest参数值为:{}",req);
|
|
|
// 判断只能查当前在浦东范围内有AIS信号的船
|
|
|
if(!commonService.checkInportByShipId(req.getShipId())){
|
|
|
throw new EnumException("该船舶不在辖区内");
|
|
@@ -205,6 +206,7 @@ public class BoatController extends CommonController {
|
|
|
}
|
|
|
String paramJsonData = getParamJsonData(vo.getData());
|
|
|
BoatPathReq req = JSONObject.parseObject(paramJsonData, BoatPathReq.class);
|
|
|
+ log.info("getBoatPath_BoatPathReq=>{}",req);
|
|
|
List<BoatPathVo> voList = commonService.selectBoatPathList(req);
|
|
|
ResultRes resultRes = ResultRes.encapsulationResult(voList);
|
|
|
String jsonString = JSONObject.toJSONString(resultRes);
|