|
@@ -0,0 +1,113 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
+ "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
+<mapper namespace="com.shanghaichengdi.ghjgitem.mapper.OffSiteEnforcementMapper">
|
|
|
+ <select id="getAllPageFromCoverage" resultType="com.shanghaichengdi.ghjgitem.vo.ForecastOfIncomingShipsVo">
|
|
|
+ select info.BOAT_NAME boatName,
|
|
|
+ off.CREATE_TIME time,
|
|
|
+ mvw.SHIP_OWNER_CN shipOwner,
|
|
|
+ mvw.OWNER_CONTACT_PHONE ownerPhone,
|
|
|
+ mvw.SHIP_TYPE_NAME shipType,
|
|
|
+ decode(info.DIRECTION, 1, '出沪', 2, '入沪') direction,
|
|
|
+ decode(info.BAYONET_ID, '1', '杭申线卡口', '2', '长湖申线卡口','3','大治河船闸') bayonetName,
|
|
|
+ off.CONF coverage,
|
|
|
+ decode(site.AUDIT_STATUS, 1, '是', 2, '否') pushStatus
|
|
|
+ from BAYONET_DYNAMIC.COVERAGE_ANALYSIS off
|
|
|
+ left join bayonet_dynamic.DATAFUSION info on info.CODE = off.EVENT_CODE
|
|
|
+ left join ghjg_basics.mvw_boat_info mvw on mvw.SHIP_NAME_CN = info.BOAT_NAME
|
|
|
+ left join BAYONET_BUSSINESS.OFF_SITE_CASE site on site.SHIP_ID = mvw.SHIP_ID
|
|
|
+ where info.BOAT_NAME is not null
|
|
|
+ <if test="startTime !='' and startTime!=null">
|
|
|
+ and off.CREATE_TIME >= to_date(#{startTime},'yyyy-mm-dd hh24:mi:ss')
|
|
|
+ </if>
|
|
|
+ <if test="endTime !='' and endTime!=null">
|
|
|
+ and off.CREATE_TIME <= to_date(#{endTime},'yyyy-mm-dd hh24:mi:ss')
|
|
|
+ </if>
|
|
|
+ <if test="shipName !='' and shipName!=null">
|
|
|
+ and info.BOAT_NAME like '%' || #{shipName} ||'%'
|
|
|
+ </if>
|
|
|
+ <if test="bayonetName !='' and bayonetName!=null">
|
|
|
+ and info.BAYONET_ID = #{bayonetName}
|
|
|
+ </if>
|
|
|
+ <if test="shipType !='' and shipType!=null">
|
|
|
+ and mvw.SHIP_TYPE_CODE = #{shipType}
|
|
|
+ </if>
|
|
|
+ order by off.CREATE_TIME desc
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="getAllPageFromFlag" resultType="com.shanghaichengdi.ghjgitem.vo.ForecastOfIncomingShipsVo">
|
|
|
+ select info.BOAT_NAME boatName,
|
|
|
+ off.CREATE_TIME time,
|
|
|
+ mvw.SHIP_OWNER_CN shipOwner,
|
|
|
+ mvw.OWNER_CONTACT_PHONE ownerPhone,
|
|
|
+ mvw.SHIP_TYPE_NAME shipType,
|
|
|
+ decode(info.DIRECTION, 1, '出沪', 2, '入沪') direction,
|
|
|
+ decode(info.BAYONET_ID, '1', '杭申线卡口', '2', '长湖申线卡口','3','大治河船闸') bayonetName,
|
|
|
+ decode(site.AUDIT_STATUS, 1, '是', 2, '否') pushStatus
|
|
|
+ from BAYONET_DYNAMIC.FLAG_ANALYSIS off
|
|
|
+ left join bayonet_dynamic.DATAFUSION info on info.CODE = off.EVENT_CODE
|
|
|
+ left join ghjg_basics.mvw_boat_info mvw on mvw.SHIP_NAME_CN = info.BOAT_NAME
|
|
|
+ left join BAYONET_BUSSINESS.OFF_SITE_CASE site on site.SHIP_ID = mvw.SHIP_ID
|
|
|
+ where info.BOAT_NAME is not null
|
|
|
+ <if test="startTime !='' and startTime!=null">
|
|
|
+ and off.CREATE_TIME >= to_date(#{startTime},'yyyy-mm-dd hh24:mi:ss')
|
|
|
+ </if>
|
|
|
+ <if test="endTime !='' and endTime!=null">
|
|
|
+ and off.CREATE_TIME <= to_date(#{endTime},'yyyy-mm-dd hh24:mi:ss')
|
|
|
+ </if>
|
|
|
+ <if test="shipName !='' and shipName!=null">
|
|
|
+ and info.BOAT_NAME like '%' || #{shipName} ||'%'
|
|
|
+ </if>
|
|
|
+ <if test="bayonetName !='' and bayonetName!=null">
|
|
|
+ and info.BAYONET_ID = #{bayonetName}
|
|
|
+ </if>
|
|
|
+ <if test="shipType !='' and shipType!=null">
|
|
|
+ and mvw.SHIP_TYPE_CODE = #{shipType}
|
|
|
+ </if>
|
|
|
+ order by off.CREATE_TIME desc
|
|
|
+ </select>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <select id="getAllPage" resultType="com.shanghaichengdi.ghjgitem.vo.ForecastOfIncomingShipsVo">
|
|
|
+ select mvw.SHIP_NAME_CN boatName,
|
|
|
+ T.SHIP_OWNER shipOwner,
|
|
|
+ T.CONTACT_PHONE ownerPhone,
|
|
|
+ decode(T.TYPE, 1, '国旗悬挂', 2, '货物覆盖') siteType,
|
|
|
+ T.CREATE_TIME time,
|
|
|
+ decode(info.DIRECTION, 1, '出沪', 2, '入沪') direction,
|
|
|
+ decode(info.BAYONET_ID, '1', '杭申线卡口', '2', '长湖申线卡口','3','大治河船闸') bayonetName,
|
|
|
+ T.COVERAGE coverage,
|
|
|
+ decode(T.AUDIT_STATUS, 1, '是', 2, '否') pushStatus
|
|
|
+ from BAYONET_BUSSINESS.OFF_SITE_CASE T
|
|
|
+ left join ghjg_basics.mvw_boat_info mvw on T.SHIP_ID = T.SHIP_ID
|
|
|
+ left join bayonet_dynamic.DATAFUSION info on info.CODE = T.EVENT_CODE
|
|
|
+ where mvw.SHIP_NAME_CN is not null
|
|
|
+ <if test="startTime !='' and startTime!=null">
|
|
|
+ and T.CREATE_TIME >= to_date(#{startTime},'yyyy-mm-dd hh24:mi:ss')
|
|
|
+ </if>
|
|
|
+ <if test="endTime !='' and endTime!=null">
|
|
|
+ and T.CREATE_TIME <= to_date(#{endTime},'yyyy-mm-dd hh24:mi:ss')
|
|
|
+ </if>
|
|
|
+ <if test="shipName !='' and shipName!=null">
|
|
|
+ and info.BOAT_NAME like '%' || #{shipName} ||'%'
|
|
|
+ </if>
|
|
|
+ <if test="bayonetName !='' and bayonetName!=null">
|
|
|
+ and info.BAYONET_ID = #{bayonetName}
|
|
|
+ </if>
|
|
|
+ <if test="shipType !='' and shipType!=null">
|
|
|
+ and mvw.SHIP_TYPE_CODE = #{shipType}
|
|
|
+ </if>
|
|
|
+ order by T.CREATE_TIME desc
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="getPicture" resultType="com.shanghaichengdi.ghjgitem.domain.Video">
|
|
|
+ select t.PHOTONAME
|
|
|
+ from BAYONET_DYNAMIC.VIDEO_ANALYSIS t
|
|
|
+ left join BAYONET_BUSSINESS.BOAT_WARNING warn on warn.EVENTCODE = t.EVENTCODE
|
|
|
+ where 1=1
|
|
|
+ <if test="warnCode !='' and warnCode!=null">
|
|
|
+ and warn.warnCode = #{warnCode}
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
+</mapper>
|