|
@@ -144,8 +144,8 @@ public class CommonServiceImpl implements CommonService {
|
|
|
@Override
|
|
|
public List<BoatReportInfoVo> selectBoatReportInfoList(ReportInfoRequest param)
|
|
|
throws ParseException {
|
|
|
- String startTime = param.getDateTo() + " 00:00:00";
|
|
|
- String endTime = param.getDateFrom() + " 23:59:59";
|
|
|
+ String startTime = param.getDateFrom() + " 00:00:00";
|
|
|
+ String endTime = param.getDateTo() + " 23:59:59";
|
|
|
// String partition = "SHIP_REPORT_" + DateUtils.dateToString(
|
|
|
// DateUtils.stringToDate(param.getDateFrom(), DateUtils.DATE_FORMAT_10),
|
|
|
// DateUtils.DATE_FORMAT_11);
|
|
@@ -174,6 +174,55 @@ public class CommonServiceImpl implements CommonService {
|
|
|
param.getReportNo());
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<BoatContactVo> selectBoatContactByMmsi(ShipDataRequest param) throws Exception{
|
|
|
+ String[] mmsis = param.getMmsi().split(",");
|
|
|
+ if (mmsis != null && mmsis.length > 1){
|
|
|
+ if(mmsis.length > 500){
|
|
|
+ throw new EnumException("mmsi批量查询不得超过500条");
|
|
|
+ }
|
|
|
+ List<String> mmsiList = Arrays.asList(mmsis);
|
|
|
+ for(int i=0; i<mmsiList.size();i++){
|
|
|
+ mmsiList.set(i, "'" + mmsiList.get(i) + "'");
|
|
|
+ }
|
|
|
+ param.setMmsiList(mmsiList);
|
|
|
+ param.setMmsi("");
|
|
|
+ }
|
|
|
+
|
|
|
+ PageHelper.startPage(param.getPageIndex(), param.getPageSize());
|
|
|
+ List<ShipDataVo> shipDataVoList = mapper.selectBoatContactInfoByMmsi(param);
|
|
|
+ log.info("匹配到船舶基础信息:{}",shipDataVoList.toString());
|
|
|
+
|
|
|
+ List<BoatContactVo> baotContactList =new ArrayList<>();
|
|
|
+ for(ShipDataVo shipDataVo : shipDataVoList){
|
|
|
+ BoatContactVo boatContactVo = new BoatContactVo();
|
|
|
+ ReportInfoRequest reportReq = new ReportInfoRequest();
|
|
|
+ reportReq.setShipId(shipDataVo.getShipId());
|
|
|
+ reportReq.setPageIndex(1);
|
|
|
+ reportReq.setPageSize(1);
|
|
|
+ Calendar calendar = Calendar.getInstance();
|
|
|
+ calendar.setTime(new Date());
|
|
|
+ calendar.set(Calendar.HOUR_OF_DAY, -48);
|
|
|
+ reportReq.setDateFrom(DateUtils.dateToString(calendar.getTime(), DateUtils.DATE_FORMAT_10));
|
|
|
+ reportReq.setDateTo(DateUtils.dateToString(new Date(), DateUtils.DATE_FORMAT_10));
|
|
|
+ List<BoatReportInfoVo> reportVoList = selectBoatReportInfoList(reportReq);
|
|
|
+
|
|
|
+ boatContactVo.setMmsi(shipDataVo.getMmsi());
|
|
|
+ boatContactVo.setShipId(shipDataVo.getShipId());
|
|
|
+ if(!reportVoList.isEmpty()){
|
|
|
+ boatContactVo.setContact(reportVoList.get(0).getBidName());
|
|
|
+ boatContactVo.setPhone(reportVoList.get(0).getMobilePhone());
|
|
|
+ }else{
|
|
|
+ boatContactVo.setContact(shipDataVo.getOwnerLegalPerson());
|
|
|
+ boatContactVo.setPhone(shipDataVo.getOwnerContactPhone());
|
|
|
+ }
|
|
|
+
|
|
|
+ baotContactList.add(boatContactVo);
|
|
|
+ }
|
|
|
+
|
|
|
+ return baotContactList;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public List<ShipDataVo> obscureSelectBoatInfoList(ShipDataRequest param) {
|
|
|
param.setPageIndex(1);
|