BoatPollutionWarningServiceImpl.java 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662
  1. package com.shanghaichengdi.service.impl;
  2. import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
  3. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  4. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  5. import com.shanghaichengdi.common.enums.*;
  6. import com.shanghaichengdi.common.exception.BizException;
  7. import com.shanghaichengdi.common.properties.GpsStartTimeProperties;
  8. import com.shanghaichengdi.common.properties.WarningProperties;
  9. import com.shanghaichengdi.common.util.LocalDateTimeUtil;
  10. import com.shanghaichengdi.dao.entity.*;
  11. import com.shanghaichengdi.dao.mapper.BoatPollutionWarningMapper;
  12. import com.shanghaichengdi.model.vo.BoatAISVO;
  13. import com.shanghaichengdi.service.*;
  14. import lombok.extern.slf4j.Slf4j;
  15. import org.springframework.stereotype.Service;
  16. import javax.annotation.Resource;
  17. import java.text.SimpleDateFormat;
  18. import java.time.Duration;
  19. import java.time.LocalDateTime;
  20. import java.time.ZoneId;
  21. import java.util.*;
  22. import java.util.stream.Collectors;
  23. /**
  24. * @ClassName BoatPollutionWarningServiceImpl
  25. * @Author Tevin
  26. * @DATE 2024/12/27 11:42
  27. * @Description TODO
  28. **/
  29. @Slf4j
  30. @Service
  31. public class BoatPollutionWarningServiceImpl extends ServiceImpl<BoatPollutionWarningMapper, BoatPollutionWarning> implements IBoatPollutionWarningService {
  32. @Resource
  33. private GpsStartTimeProperties gpsStartTimeProperties;
  34. @Resource
  35. private WarningProperties warningProperties;
  36. @Resource
  37. private IGpsinfoHistoryService gpsinfoHistoryService;
  38. @Resource
  39. private IGpsinfoRealtimeService gpsinfoRealtimeService;
  40. @Resource
  41. private IDictDistrictPortService dictDistrictPortService;
  42. @Resource
  43. private IBoatPollutionSupervisionService boatPollutionSupervisionService;
  44. @Resource
  45. private ISerialService serialService;
  46. @Resource
  47. private IBoatWaterPollutantAcceptFService boatWaterPollutantAcceptFService;
  48. @Resource
  49. private ICCbShipEepReportRecService ccbShipEepReportRecService;
  50. /**
  51. * 处理市内短驳船预警
  52. */
  53. public void handleShortBarge() {
  54. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge start==========");
  55. LocalDateTime handleStartTime = LocalDateTime.now();
  56. Date maxGpsTime = boatPollutionSupervisionService.getMaxGpsTime(SupervisionTypeEnum.SHORT_BARGE.getStatusCode());
  57. LocalDateTime startdefaultLocalDateTime = LocalDateTimeUtil.parse(gpsStartTimeProperties.getGpsstartsime());
  58. Date startTime = Optional.ofNullable(maxGpsTime).orElse(Date.from(startdefaultLocalDateTime.atZone(ZoneId.systemDefault()).toInstant()));
  59. LocalDateTime startLocalDateTime = startTime.toInstant().atZone(ZoneId.systemDefault()).toLocalDateTime();
  60. long diffMillis = Duration.between(startLocalDateTime, LocalDateTime.now()).toMillis();
  61. if (diffMillis <= 0) {
  62. return;
  63. }
  64. LocalDateTime endLocalDateTime = this.calSuperviseEndTime(startLocalDateTime, diffMillis);
  65. Date endTime = Date.from(endLocalDateTime.atZone(ZoneId.systemDefault()).toInstant());
  66. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.getShotBargeAis==========");
  67. //查询开始结束时间段内的市内短驳船AIS历史数据进行分析
  68. // List<BoatAISVO> boatAISList = gpsinfoHistoryService.getShotBargeAisHistory(startTime, endTime);
  69. List<BoatAISVO> boatAISList = gpsinfoRealtimeService.getShotBargeAisRealtime(startTime, endTime);
  70. if (boatAISList.isEmpty()) {
  71. throw new BizException("未查到船舶AIS数据!");
  72. }
  73. // 查询全部有效的监管船舶
  74. List<BoatPollutionSupervision> boatPollutionSupervisionList = boatPollutionSupervisionService.list();
  75. if (boatPollutionSupervisionList.isEmpty()) {
  76. throw new BizException("未查到船舶监管记录!");
  77. }
  78. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.dictDistrictPortList==========");
  79. List<DictDistrictPort> dictDistrictPortList = dictDistrictPortService.getDictDistrictPortList();
  80. Map<String, List<BoatAISVO>> boatAISVOMap = boatAISList.stream().collect(Collectors.groupingBy(BoatAISVO::getDeviceId));
  81. boatAISVOMap.forEach((k, v) -> {
  82. //查询船舶最近监管记录
  83. List<BoatPollutionSupervision> bpsList = boatPollutionSupervisionList.stream().filter(x -> x.getMmsi().equals(k) && x.getSupervisionState().equals(SupervisionStateEnum.SUPERVISING.getStatusCode())).sorted(Comparator.comparing(BoatPollutionSupervision::getCreatedTime).reversed()).collect(Collectors.toList());
  84. LocalDateTime gpsTime = LocalDateTimeUtil.parse(v.get(0).getGpsTime());
  85. //进出港申报记录
  86. LambdaQueryWrapper<CCbShipEepReportRec> cCbShipEepReportRecLambdaQueryWrapper = new LambdaQueryWrapper<>();
  87. if (v.get(0).getShipId() != null) {
  88. cCbShipEepReportRecLambdaQueryWrapper.eq(CCbShipEepReportRec::getShipId, v.get(0).getShipId())
  89. .le(CCbShipEepReportRec::getReportTime, gpsTime)
  90. .ge(CCbShipEepReportRec::getReportTime, gpsTime.minusDays(20))
  91. .likeRight(CCbShipEepReportRec::getOrgCode, "29")
  92. .orderByDesc(CCbShipEepReportRec::getReportTime);
  93. } else if (v.get(0).getDeviceId() != null) {
  94. cCbShipEepReportRecLambdaQueryWrapper.eq(CCbShipEepReportRec::getMmsi, v.get(0).getDeviceId())
  95. .le(CCbShipEepReportRec::getReportTime, gpsTime)
  96. .ge(CCbShipEepReportRec::getReportTime, gpsTime.minusDays(20))
  97. .likeRight(CCbShipEepReportRec::getOrgCode, "29")
  98. .orderByDesc(CCbShipEepReportRec::getReportTime);
  99. } else {
  100. cCbShipEepReportRecLambdaQueryWrapper.eq(CCbShipEepReportRec::getShipNameCn, v.get(0).getShipName())
  101. .le(CCbShipEepReportRec::getReportTime, gpsTime)
  102. .ge(CCbShipEepReportRec::getReportTime, gpsTime.minusDays(20))
  103. .likeRight(CCbShipEepReportRec::getOrgCode, "29")
  104. .orderByDesc(CCbShipEepReportRec::getReportTime);
  105. }
  106. List<CCbShipEepReportRec> ccbShipEepReportRecList = ccbShipEepReportRecService.list(cCbShipEepReportRecLambdaQueryWrapper);
  107. if (!bpsList.isEmpty()) {
  108. BoatPollutionSupervision bps = bpsList.get(0);
  109. if (bps.getHasWarning().equals(HasWarningEnum.HAS.getStatusCode())) {
  110. //有预警
  111. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.start==========");
  112. BoatPollutionWarning boatPollutionWarning = this.getOne(new QueryWrapper<BoatPollutionWarning>().lambda().eq(BoatPollutionWarning::getSupervisionCode, bps.getCode()));
  113. if (boatPollutionWarning.getFilterState().equals(FilterStateEnum.UNDISPOSED.getStatusCode())) {
  114. if (gpsTime.isAfter(boatPollutionWarning.getWarningTime().plusDays(5))) {
  115. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.overBoatPollutionWarning.undisposed.removeWarning==========");
  116. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  117. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  118. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  119. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  120. this.remove(new QueryWrapper<BoatPollutionWarning>().lambda().eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()));
  121. }
  122. } else if (boatPollutionWarning.getFilterState().equals(FilterStateEnum.CONFIRM.getStatusCode())) {
  123. //查询排放物
  124. LambdaQueryWrapper<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFLambdaQueryWrapper = new LambdaQueryWrapper<>();
  125. if (v.get(0).getShipName() != null) {
  126. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  127. .eq(BoatWaterPollutantAcceptF::getShipName, v.get(0).getShipName())
  128. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  129. .ge(BoatWaterPollutantAcceptF::getFirstDtm, bps.getStartTime())
  130. .le(BoatWaterPollutantAcceptF::getFirstDtm, boatPollutionWarning.getWarningTime().plusDays(5).isAfter(gpsTime) ? gpsTime : boatPollutionWarning.getWarningTime().plusDays(5))
  131. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  132. } else {
  133. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  134. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  135. .ge(BoatWaterPollutantAcceptF::getFirstDtm, bps.getStartTime())
  136. .le(BoatWaterPollutantAcceptF::getFirstDtm, boatPollutionWarning.getWarningTime().plusDays(5).isAfter(gpsTime) ? gpsTime : boatPollutionWarning.getWarningTime().plusDays(5))
  137. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  138. }
  139. List<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFList = boatWaterPollutantAcceptFService.list(boatWaterPollutantAcceptFLambdaQueryWrapper);
  140. if (gpsTime.isAfter(boatPollutionWarning.getWarningTime().plusDays(5))) {
  141. if (!boatWaterPollutantAcceptFList.isEmpty()) {
  142. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.overBoatPollutionWarning.releive.Y5.pollutant_release==========");
  143. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  144. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  145. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  146. .set(BoatPollutionSupervision::getLastOilsewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.OILSEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  147. .set(BoatPollutionSupervision::getLastSewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.SEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  148. .set(BoatPollutionSupervision::getLastToxicliquidTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.TOXICLIQUID.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  149. .set(BoatPollutionSupervision::getLastBadoilTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.BADOIL.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  150. .set(BoatPollutionSupervision::getLastRubbishTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.RUBBISH.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  151. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  152. this.lambdaUpdate()
  153. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  154. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  155. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.POLLUTANT_RELEASE.getStatusCode())
  156. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  157. } else {
  158. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.overBoatPollutionWarning.releive.Y5.warning_exceed==========");
  159. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  160. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  161. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  162. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  163. this.lambdaUpdate()
  164. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  165. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  166. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.WARNING_EXCEED.getStatusCode())
  167. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  168. }
  169. } else {
  170. if (!boatWaterPollutantAcceptFList.isEmpty()) {
  171. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.overBoatPollutionWarning.releive.N5.pollutant_release==========");
  172. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  173. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  174. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  175. .set(BoatPollutionSupervision::getLastOilsewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.OILSEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  176. .set(BoatPollutionSupervision::getLastSewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.SEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  177. .set(BoatPollutionSupervision::getLastToxicliquidTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.TOXICLIQUID.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  178. .set(BoatPollutionSupervision::getLastBadoilTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.BADOIL.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  179. .set(BoatPollutionSupervision::getLastRubbishTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.RUBBISH.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  180. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  181. this.lambdaUpdate()
  182. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  183. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  184. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.POLLUTANT_RELEASE.getStatusCode())
  185. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  186. } else {
  187. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.overBoatPollutionWarning.releive.N5.updateBoatPollutionSupervision==========");
  188. boatPollutionSupervisionService.lambdaUpdate()
  189. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  190. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  191. }
  192. }
  193. } else if (boatPollutionWarning.getFilterState().equals(FilterStateEnum.CANCEL.getStatusCode())) {
  194. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.Warning.overBoatPollutionWarning.cancel.removeWarning==========");
  195. this.remove(new QueryWrapper<BoatPollutionWarning>().lambda().eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()));
  196. }
  197. } else {
  198. //无预警
  199. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.noneWarning.start==========");
  200. //查询排放物
  201. LambdaQueryWrapper<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFLambdaQueryWrapper = new LambdaQueryWrapper<>();
  202. if (v.get(0).getShipName() != null) {
  203. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  204. .eq(BoatWaterPollutantAcceptF::getShipName, v.get(0).getShipName())
  205. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  206. .ge(BoatWaterPollutantAcceptF::getFirstDtm, bps.getStartTime())
  207. .le(BoatWaterPollutantAcceptF::getFirstDtm, bps.getPredictwarnSwTime().isAfter(gpsTime) ? gpsTime : bps.getPredictwarnSwTime())
  208. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  209. } else {
  210. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  211. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  212. .ge(BoatWaterPollutantAcceptF::getFirstDtm, bps.getStartTime())
  213. .le(BoatWaterPollutantAcceptF::getFirstDtm, bps.getPredictwarnSwTime().isAfter(gpsTime) ? gpsTime : bps.getPredictwarnSwTime())
  214. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  215. }
  216. List<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFList = boatWaterPollutantAcceptFService.list(boatWaterPollutantAcceptFLambdaQueryWrapper);
  217. //查询是否到监控周期内的第五天
  218. if (gpsTime.isAfter(bps.getStartTime().plusDays(5))) {
  219. //是否有排放记录
  220. if (!boatWaterPollutantAcceptFList.isEmpty()) {
  221. //结束监管
  222. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.noneWarning.overBoatPollutionWarning==========");
  223. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  224. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  225. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  226. .set(BoatPollutionSupervision::getLastOilsewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.OILSEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  227. .set(BoatPollutionSupervision::getLastSewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.SEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  228. .set(BoatPollutionSupervision::getLastToxicliquidTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.TOXICLIQUID.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  229. .set(BoatPollutionSupervision::getLastBadoilTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.BADOIL.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  230. .set(BoatPollutionSupervision::getLastRubbishTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.RUBBISH.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  231. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  232. } else {
  233. //生成预警
  234. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.generateBoatPollutionWarning==========");
  235. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getHasWarning, HasWarningEnum.HAS.getStatusCode())
  236. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  237. .set(BoatPollutionSupervision::getWarningCount, bps.getWarningCount() + 1)
  238. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  239. BoatPollutionWarning boatPollutionWarningItem = new BoatPollutionWarning();
  240. boatPollutionWarningItem.setCode(serialService.getCusNumber("bpw"));
  241. boatPollutionWarningItem.setSupervisionCode(bps.getCode());
  242. boatPollutionWarningItem.setBoatName(bps.getBoatName());
  243. boatPollutionWarningItem.setMmsi(bps.getMmsi());
  244. boatPollutionWarningItem.setType(SewageTypeEnum.SEWAGE.getType());
  245. boatPollutionWarningItem.setWarningTime(gpsTime);
  246. boatPollutionWarningItem.setReportCode(ccbShipEepReportRecList.get(0).getReportNo());
  247. boatPollutionWarningItem.setWarningState(WarningStateEnum.WANNING.getStatusCode());
  248. boatPollutionWarningItem.setIsRead(IsReadEnum.UNREAD.getStatusCode());
  249. boatPollutionWarningItem.setDistrict(this.getDistinct(ccbShipEepReportRecList.get(0), dictDistrictPortList));
  250. boatPollutionWarningItem.setBerthName(ccbShipEepReportRecList.get(0).getBerthName());
  251. boatPollutionWarningItem.setRelieveType(RelieveTypeEnum.WARNING.getStatusCode());
  252. boatPollutionWarningItem.setSendmsgFlag(SendMsgFlagEnum.UNSENT.getStatusCode());
  253. boatPollutionWarningItem.setWarnCount(0);
  254. boatPollutionWarningItem.setFilterState(FilterStateEnum.UNDISPOSED.getStatusCode());
  255. this.save(boatPollutionWarningItem);
  256. }
  257. } else {
  258. //是否有排放记录
  259. if (!boatWaterPollutantAcceptFList.isEmpty()) {
  260. //结束监管
  261. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.noneWarning.overBoatPollutionSupervision==========");
  262. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  263. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  264. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  265. .set(BoatPollutionSupervision::getLastOilsewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.OILSEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  266. .set(BoatPollutionSupervision::getLastSewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.SEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  267. .set(BoatPollutionSupervision::getLastToxicliquidTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.TOXICLIQUID.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  268. .set(BoatPollutionSupervision::getLastBadoilTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.BADOIL.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  269. .set(BoatPollutionSupervision::getLastRubbishTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.RUBBISH.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  270. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  271. } else {
  272. //更新监管
  273. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge.noneWarning.updateBoatPollutionSupervision==========");
  274. boatPollutionSupervisionService.lambdaUpdate()
  275. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  276. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISING.getStatusCode())
  277. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  278. }
  279. }
  280. }
  281. } else {
  282. if (!ccbShipEepReportRecList.isEmpty()) {
  283. //新增监管记录
  284. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge saveBoatPollutionSupervision==========");
  285. BoatPollutionSupervision boatPollutionSupervision = new BoatPollutionSupervision();
  286. boatPollutionSupervision.setCode(serialService.getCusNumber("bps"));
  287. boatPollutionSupervision.setMmsi(k);
  288. boatPollutionSupervision.setStartTime(gpsTime);
  289. boatPollutionSupervision.setGpsTime(gpsTime);
  290. boatPollutionSupervision.setIsBreak(IsBreakEnum.VALID_0.getStatusCode());
  291. boatPollutionSupervision.setHasWarning(HasWarningEnum.NONE.getStatusCode());
  292. boatPollutionSupervision.setReportId(ccbShipEepReportRecList.get(0).getReportId());
  293. boatPollutionSupervision.setBerthName(ccbShipEepReportRecList.get(0).getBerthName());
  294. boatPollutionSupervision.setBoatName(v.get(0).getShipName());
  295. boatPollutionSupervision.setOutCount(0);
  296. boatPollutionSupervision.setSupervisionType(SupervisionTypeEnum.SHORT_BARGE.getStatusCode());
  297. boatPollutionSupervision.setSupervisionState(SupervisionStateEnum.SUPERVISING.getStatusCode());
  298. boatPollutionSupervision.setPredictwarnSwTime(gpsTime.plusDays(Long.parseLong(warningProperties.getPollutionday())));
  299. boatPollutionSupervision.setWarningCount(0);
  300. boatPollutionSupervisionService.save(boatPollutionSupervision);
  301. }
  302. }
  303. });
  304. LocalDateTime handleEndTime = LocalDateTime.now();
  305. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge crossTime:[" + Duration.between(handleStartTime, handleEndTime).toMillis() + " milliseconds]==========");
  306. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge end==========");
  307. }
  308. /**
  309. * 处理普通船舶预警
  310. */
  311. public void handleOrdinaryShip() {
  312. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip start==========");
  313. LocalDateTime handleStartTime = LocalDateTime.now();
  314. Date maxGpsTime = boatPollutionSupervisionService.getMaxGpsTime(SupervisionTypeEnum.ORDINARY_SHIP_TYPE.getStatusCode());
  315. LocalDateTime startdefaultLocalDateTime = LocalDateTimeUtil.parse(gpsStartTimeProperties.getGpsstartsime());
  316. Date startTime = Optional.ofNullable(maxGpsTime).orElse(Date.from(startdefaultLocalDateTime.atZone(ZoneId.systemDefault()).toInstant()));
  317. LocalDateTime startLocalDateTime = startTime.toInstant().atZone(ZoneId.systemDefault()).toLocalDateTime();
  318. SimpleDateFormat sdf = new SimpleDateFormat(" yyyy-MM-dd HH:mm:ss ");
  319. long diffMillis = Duration.between(startLocalDateTime, LocalDateTime.now()).toMillis();
  320. if (diffMillis <= 0) {
  321. return;
  322. }
  323. LocalDateTime endLocalDateTime = this.calSuperviseEndTime(startLocalDateTime, diffMillis);
  324. Date endTime = Date.from(endLocalDateTime.atZone(ZoneId.systemDefault()).toInstant());
  325. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.getShotBargeAis==========");
  326. //查询开始结束时间段内的市内短驳船AIS历史数据进行分析
  327. List<BoatAISVO> boatAISList = gpsinfoHistoryService.getOrdinaryShipAisHistory(startTime, endTime);
  328. if (boatAISList.isEmpty()) {
  329. throw new BizException("未查到船舶AIS数据!");
  330. }
  331. // 查询全部有效的监管船舶
  332. List<BoatPollutionSupervision> boatPollutionSupervisionList = boatPollutionSupervisionService.list();
  333. if (boatPollutionSupervisionList.isEmpty()) {
  334. throw new BizException("未查到船舶监管记录!");
  335. }
  336. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.dictDistrictPortList==========");
  337. List<DictDistrictPort> dictDistrictPortList = dictDistrictPortService.getDictDistrictPortList();
  338. Map<String, List<BoatAISVO>> boatAISVOMap = boatAISList.stream().collect(Collectors.groupingBy(BoatAISVO::getDeviceId));
  339. boatAISVOMap.forEach((k, v) -> {
  340. //查询船舶最近监管记录
  341. List<BoatPollutionSupervision> bpsList = boatPollutionSupervisionList.stream().filter(x -> x.getMmsi().equals(k) && x.getSupervisionState().equals(SupervisionStateEnum.SUPERVISING.getStatusCode())).sorted(Comparator.comparing(BoatPollutionSupervision::getCreatedTime).reversed()).collect(Collectors.toList());
  342. LocalDateTime gpsTime = LocalDateTimeUtil.parse(v.get(0).getGpsTime());
  343. if (!bpsList.isEmpty()) {
  344. BoatPollutionSupervision bps = bpsList.get(0);
  345. //查询排放物
  346. LambdaQueryWrapper<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFLambdaQueryWrapper = new LambdaQueryWrapper<>();
  347. if (!v.get(0).getShipName().isEmpty()) {
  348. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getSewageType, v.get(0).getDeviceId())
  349. .eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  350. .eq(BoatWaterPollutantAcceptF::getShipName, v.get(0).getShipName())
  351. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  352. .gt(BoatWaterPollutantAcceptF::getFirstDtm, bps.getStartTime())
  353. .le(BoatWaterPollutantAcceptF::getFirstDtm, bps.getPredictwarnSwTime().isAfter(gpsTime) ? gpsTime : bps.getPredictwarnSwTime())
  354. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  355. } else {
  356. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getSewageType, v.get(0).getShipName())
  357. .eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  358. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  359. .gt(BoatWaterPollutantAcceptF::getFirstDtm, bps.getStartTime())
  360. .le(BoatWaterPollutantAcceptF::getFirstDtm, bps.getPredictwarnSwTime().isAfter(gpsTime) ? gpsTime : bps.getPredictwarnSwTime())
  361. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  362. }
  363. List<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFList = boatWaterPollutantAcceptFService.list(boatWaterPollutantAcceptFLambdaQueryWrapper);
  364. if (bps.getHasWarning().equals(HasWarningEnum.HAS.getStatusCode())) {
  365. //有预警
  366. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.start==========");
  367. BoatPollutionWarning boatPollutionWarning = this.getOne(new QueryWrapper<BoatPollutionWarning>().lambda().eq(BoatPollutionWarning::getSupervisionCode, bps.getCode()));
  368. if (boatPollutionWarning.getFilterState().equals(FilterStateEnum.UNDISPOSED.getStatusCode())) {
  369. if (gpsTime.isAfter(boatPollutionWarning.getWarningTime().plusDays(5))) {
  370. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.undisposed.removeWarning==========");
  371. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  372. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  373. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  374. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  375. this.remove(new QueryWrapper<BoatPollutionWarning>().lambda().eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()));
  376. }
  377. } else if (boatPollutionWarning.getFilterState().equals(FilterStateEnum.CONFIRM.getStatusCode())) {
  378. //判断是否到预警后的第5天
  379. if (gpsTime.isAfter(boatPollutionWarning.getWarningTime().plusDays(5))) {
  380. if (!boatWaterPollutantAcceptFList.isEmpty()) {
  381. //有排污
  382. //查询是否出港
  383. boolean isOut = false;
  384. Integer outCount = 0;
  385. LocalDateTime outTime = null;
  386. for (int i = 0; i < v.size(); i++) {
  387. if (v.get(i).getState() == 0) {
  388. outCount++;
  389. if (outCount >= 3) {
  390. isOut = true;
  391. outTime = LocalDateTime.parse(v.get(i - 2).getGpsTime());
  392. break;
  393. }
  394. } else if (v.get(i).getState() == 1) {
  395. outCount = 0;
  396. }
  397. }
  398. if (isOut) {
  399. if (outTime.isBefore(gpsTime)) {
  400. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.releive.Y5.leave_port==========");
  401. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  402. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  403. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  404. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  405. this.lambdaUpdate()
  406. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  407. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  408. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.LEAVE_PORT.getStatusCode())
  409. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  410. } else {
  411. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.releive.Y5.pollutant_release2==========");
  412. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  413. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  414. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  415. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  416. this.lambdaUpdate()
  417. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  418. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  419. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.POLLUTANT_RELEASE.getStatusCode())
  420. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  421. }
  422. } else {
  423. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.releive.Y5.pollutant_release==========");
  424. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  425. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  426. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  427. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  428. this.lambdaUpdate()
  429. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  430. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  431. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.POLLUTANT_RELEASE.getStatusCode())
  432. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  433. }
  434. } else {
  435. //无排污
  436. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.releive.Y5.warning_exceed==========");
  437. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  438. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  439. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  440. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  441. this.lambdaUpdate()
  442. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  443. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  444. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.WARNING_EXCEED.getStatusCode())
  445. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  446. }
  447. } else {
  448. if (!boatWaterPollutantAcceptFList.isEmpty()) {
  449. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.releive.N5.pollutant_release==========");
  450. boatPollutionSupervisionService.lambdaUpdate().set(BoatPollutionSupervision::getEndTime, gpsTime)
  451. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  452. .set(BoatPollutionSupervision::getSupervisionState, SupervisionStateEnum.SUPERVISE_OVER.getStatusCode())
  453. .set(BoatPollutionSupervision::getLastOilsewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.OILSEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  454. .set(BoatPollutionSupervision::getLastSewageTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.SEWAGE.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  455. .set(BoatPollutionSupervision::getLastToxicliquidTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.TOXICLIQUID.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  456. .set(BoatPollutionSupervision::getLastBadoilTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.BADOIL.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  457. .set(BoatPollutionSupervision::getLastRubbishTime, boatWaterPollutantAcceptFList.stream().filter(y -> y.getSewageType().equals(SewageTypeEnum.RUBBISH.getType())).findFirst().map(BoatWaterPollutantAcceptF::getFirstDtm).orElse(null))
  458. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  459. this.lambdaUpdate()
  460. .set(BoatPollutionWarning::getWarningState, WarningStateEnum.WANNING_RELIEVE.getStatusCode())
  461. .set(BoatPollutionWarning::getRelieveTime, gpsTime)
  462. .set(BoatPollutionWarning::getRelieveType, RelieveTypeEnum.POLLUTANT_RELEASE.getStatusCode())
  463. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  464. } else {
  465. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.releive.N5.updateBoatPollutionSupervision==========");
  466. boatPollutionSupervisionService.lambdaUpdate()
  467. .set(BoatPollutionSupervision::getGpsTime, gpsTime)
  468. .eq(BoatPollutionSupervision::getCode, bps.getCode()).update(new BoatPollutionSupervision());
  469. this.lambdaUpdate()
  470. .set(BoatPollutionWarning::getWarnCount, boatPollutionWarning.getWarnCount() + 1)
  471. .eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()).update(new BoatPollutionWarning());
  472. }
  473. }
  474. } else if (boatPollutionWarning.getFilterState().equals(FilterStateEnum.CANCEL.getStatusCode())) {
  475. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.Warning.overBoatPollutionWarning.removeWarning==========");
  476. this.remove(new QueryWrapper<BoatPollutionWarning>().lambda().eq(BoatPollutionWarning::getCode, boatPollutionWarning.getCode()));
  477. }
  478. }
  479. } else {
  480. //无预警
  481. //查询近三次AIS中是否有一个点在围栏内
  482. boolean isIn = false;
  483. LocalDateTime inTime = null;
  484. for (BoatAISVO boatAISVO : v) {
  485. if (boatAISVO.getState() == 1) {
  486. inTime = LocalDateTimeUtil.parse(boatAISVO.getGpsTime());
  487. isIn = true;
  488. break;
  489. }
  490. }
  491. if (isIn) {
  492. //有一个点在围栏内
  493. //查询进出港申报地是上海的申报记录
  494. LambdaQueryWrapper<CCbShipEepReportRec> cCbShipEepReportRecLambdaQueryWrapper = new LambdaQueryWrapper<>();
  495. if (v.get(0).getShipId() != null) {
  496. cCbShipEepReportRecLambdaQueryWrapper.eq(CCbShipEepReportRec::getShipId, v.get(0).getShipId())
  497. .between(CCbShipEepReportRec::getReportTime, inTime.minusDays(1), inTime)
  498. .eq(CCbShipEepReportRec::getArrivalOrLeave, ArrivalOrLeaveEnum.ARRIVAL.getStatusCode())
  499. .likeRight(CCbShipEepReportRec::getOrgCode, "29").orderByDesc(CCbShipEepReportRec::getReportTime);
  500. } else if (v.get(0).getDeviceId() != null) {
  501. cCbShipEepReportRecLambdaQueryWrapper.eq(CCbShipEepReportRec::getMmsi, v.get(0).getDeviceId())
  502. .between(CCbShipEepReportRec::getReportTime, inTime.minusDays(1), inTime)
  503. .eq(CCbShipEepReportRec::getArrivalOrLeave, ArrivalOrLeaveEnum.ARRIVAL.getStatusCode())
  504. .likeRight(CCbShipEepReportRec::getOrgCode, "29")
  505. .orderByDesc(CCbShipEepReportRec::getReportTime);
  506. } else if (v.get(0).getShipName() != null) {
  507. cCbShipEepReportRecLambdaQueryWrapper.eq(CCbShipEepReportRec::getShipNameCn, v.get(0).getShipName())
  508. .between(CCbShipEepReportRec::getReportTime, inTime.minusDays(1), inTime)
  509. .eq(CCbShipEepReportRec::getArrivalOrLeave, ArrivalOrLeaveEnum.ARRIVAL.getStatusCode())
  510. .likeRight(CCbShipEepReportRec::getOrgCode, "29")
  511. .orderByDesc(CCbShipEepReportRec::getReportTime);
  512. }
  513. List<CCbShipEepReportRec> ccbShipEepReportRecList = ccbShipEepReportRecService.list(cCbShipEepReportRecLambdaQueryWrapper);
  514. if (!ccbShipEepReportRecList.isEmpty()) {
  515. //查询前5天是否有排放记录
  516. LambdaQueryWrapper<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFLambdaQueryWrapper = new LambdaQueryWrapper<>();
  517. if (v.get(0).getShipName() != null) {
  518. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  519. .eq(BoatWaterPollutantAcceptF::getShipName, v.get(0).getShipName())
  520. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  521. .gt(BoatWaterPollutantAcceptF::getFirstDtm, gpsTime.minusDays(5))
  522. .le(BoatWaterPollutantAcceptF::getFirstDtm, gpsTime)
  523. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  524. } else {
  525. boatWaterPollutantAcceptFLambdaQueryWrapper.eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getShipName())
  526. .eq(BoatWaterPollutantAcceptF::getMmsi, v.get(0).getDeviceId())
  527. .eq(BoatWaterPollutantAcceptF::getSewageType, SewageTypeEnum.SEWAGE.getType())
  528. .gt(BoatWaterPollutantAcceptF::getFirstDtm, gpsTime.minusDays(5))
  529. .le(BoatWaterPollutantAcceptF::getFirstDtm, gpsTime)
  530. .orderByDesc(BoatWaterPollutantAcceptF::getFirstDtm);
  531. }
  532. List<BoatWaterPollutantAcceptF> boatWaterPollutantAcceptFList = boatWaterPollutantAcceptFService.list(boatWaterPollutantAcceptFLambdaQueryWrapper);
  533. if (boatWaterPollutantAcceptFList.isEmpty()) {
  534. //新增监管记录
  535. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip saveBoatPollutionSupervision==========");
  536. BoatPollutionSupervision boatPollutionSupervision = new BoatPollutionSupervision();
  537. boatPollutionSupervision.setCode(serialService.getCusNumber("bps"));
  538. boatPollutionSupervision.setMmsi(k);
  539. boatPollutionSupervision.setStartTime(gpsTime);
  540. boatPollutionSupervision.setGpsTime(gpsTime);
  541. boatPollutionSupervision.setIsBreak(IsBreakEnum.VALID_0.getStatusCode());
  542. boatPollutionSupervision.setHasWarning(HasWarningEnum.HAS.getStatusCode());
  543. boatPollutionSupervision.setReportId(ccbShipEepReportRecList.get(0).getReportId());
  544. boatPollutionSupervision.setBerthName(ccbShipEepReportRecList.get(0).getBerthName());
  545. boatPollutionSupervision.setBoatName(v.get(0).getShipName());
  546. boatPollutionSupervision.setOutCount(0);
  547. boatPollutionSupervision.setSupervisionType(SupervisionTypeEnum.ORDINARY_SHIP_TYPE.getStatusCode());
  548. boatPollutionSupervision.setSupervisionState(SupervisionStateEnum.SUPERVISING.getStatusCode());
  549. boatPollutionSupervision.setPredictwarnSwTime(gpsTime.plusDays(Long.parseLong(warningProperties.getPollutionday())));
  550. boatPollutionSupervision.setWarningCount(0);
  551. boatPollutionSupervisionService.save(boatPollutionSupervision);
  552. //生成预警
  553. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip.generateBoatPollutionWarning==========");
  554. BoatPollutionWarning boatPollutionWarningItem = new BoatPollutionWarning();
  555. boatPollutionWarningItem.setCode(serialService.getCusNumber("obpw"));
  556. boatPollutionWarningItem.setSupervisionCode(boatPollutionSupervision.getCode());
  557. boatPollutionWarningItem.setBoatName(boatPollutionSupervision.getBoatName());
  558. boatPollutionWarningItem.setMmsi(boatPollutionSupervision.getMmsi());
  559. boatPollutionWarningItem.setType(SewageTypeEnum.SEWAGE.getType());
  560. boatPollutionWarningItem.setWarningTime(gpsTime);
  561. boatPollutionWarningItem.setReportCode(ccbShipEepReportRecList.get(0).getReportNo());
  562. boatPollutionWarningItem.setWarningState(WarningStateEnum.WANNING.getStatusCode());
  563. boatPollutionWarningItem.setIsRead(IsReadEnum.UNREAD.getStatusCode());
  564. boatPollutionWarningItem.setDistrict(this.getDistinct(ccbShipEepReportRecList.get(0), dictDistrictPortList));
  565. boatPollutionWarningItem.setBerthName(ccbShipEepReportRecList.get(0).getBerthName());
  566. boatPollutionWarningItem.setRelieveType(RelieveTypeEnum.WARNING.getStatusCode());
  567. boatPollutionWarningItem.setSendmsgFlag(SendMsgFlagEnum.UNSENT.getStatusCode());
  568. boatPollutionWarningItem.setWarnCount(0);
  569. boatPollutionWarningItem.setFilterState(FilterStateEnum.UNDISPOSED.getStatusCode());
  570. this.save(boatPollutionWarningItem);
  571. }
  572. }
  573. }
  574. }
  575. });
  576. LocalDateTime handleEndTime = LocalDateTime.now();
  577. log.info("==========BoatPollutionWarningServiceImpl.handleShortBarge crossTime:[" + Duration.between(handleStartTime, handleEndTime).toMillis() + " milliseconds]==========");
  578. log.info("==========BoatPollutionWarningServiceImpl.handleOrdinaryShip end==========");
  579. }
  580. /**
  581. * 计算监控时间
  582. *
  583. * @param startTime
  584. * @param diffMillis
  585. * @return
  586. */
  587. private LocalDateTime calSuperviseEndTime(LocalDateTime startTime, long diffMillis) {
  588. int millsAdd = 0;
  589. if (diffMillis <= 600000) {
  590. millsAdd = 600;
  591. } else if (diffMillis <= 1800000) {
  592. millsAdd = 1800;
  593. } else if (diffMillis <= 3600000) {
  594. millsAdd = 3600;
  595. } else if (diffMillis <= 5400000) {
  596. millsAdd = 5400;
  597. } else if (diffMillis <= 7200000) {
  598. millsAdd = 7200;
  599. } else {
  600. millsAdd = 7200;
  601. }
  602. return startTime.plusSeconds(millsAdd);
  603. }
  604. /**
  605. * 获取泊位信息
  606. *
  607. * @param cCbShipEepReportRec
  608. * @param districtPortList
  609. * @return
  610. */
  611. private String getDistinct(CCbShipEepReportRec cCbShipEepReportRec, List<DictDistrictPort> districtPortList) {
  612. // log.info(report.toString());
  613. String district = "未知";
  614. for (int i = 0; i < districtPortList.size(); i++) {
  615. if (cCbShipEepReportRec.getBerthName().equals(districtPortList.get(i).getBerthname())) {
  616. district = districtPortList.get(i).getTeam() + "-" + districtPortList.get(i).getLochus();
  617. // log.info("匹配到内河泊位,所属区县大队为:"+district);
  618. }
  619. }
  620. // 进出港类型 0进港 1出港
  621. if (cCbShipEepReportRec.getArrivalOrLeave() == 0) {
  622. if (cCbShipEepReportRec.getReportPortCode().indexOf("31") == 0) {
  623. // 受理机构是01开头代表上海外港
  624. if (cCbShipEepReportRec.getOrgCode().indexOf("01") == 0) {
  625. district = "上海海事局辖区";
  626. // log.info("匹配到进港申报到 "+district);
  627. }
  628. }
  629. } else {
  630. if (cCbShipEepReportRec.getNextPortCode().indexOf("31") == 0) {
  631. // 受理机构是01开头代表上海外港
  632. if (cCbShipEepReportRec.getOrgCode().indexOf("01") == 0) {
  633. district = "上海海事局辖区";
  634. // log.info("匹配到出港申报到 "+district);
  635. }
  636. }
  637. }
  638. return district;
  639. }
  640. }