|
@@ -8,6 +8,7 @@
|
|
|
<id property="focusId" column="focus_id" />
|
|
|
<result property="userId" column="user_id" />
|
|
|
<result property="focusCreate" column="focus_create" />
|
|
|
+ <result property="deptName" column="dept_name" />
|
|
|
<result property="shipId" column="ship_id" />
|
|
|
<result property="devideNo" column="devide_no" />
|
|
|
<result property="shipType" column="ship_type" />
|
|
@@ -23,10 +24,11 @@
|
|
|
<result property="createTime" column="create_time" />
|
|
|
<result property="modifyTime" column="modify_time" />
|
|
|
<result property="ownerType" column="owner_type" />
|
|
|
+ <result property="lastStatus" column="last_status" />
|
|
|
</resultMap>
|
|
|
|
|
|
<insert id="insertFocusShip" parameterType="focusShipData">
|
|
|
- insert bd_focus_ship(
|
|
|
+ insert ax_bd_focus_ship(
|
|
|
<if test="shipId != null and shipId != ''">ship_id,</if>
|
|
|
<if test="userId != null and userId != ''">user_id,</if>
|
|
|
create_time
|
|
@@ -38,21 +40,27 @@
|
|
|
</insert>
|
|
|
|
|
|
<delete id="deleteFocusShip" parameterType="integer">
|
|
|
- delete from bd_focus_ship where focus_id=#{focusId}
|
|
|
+ delete from ax_bd_focus_ship where focus_id=#{focusId}
|
|
|
</delete>
|
|
|
|
|
|
<select id="selectById" parameterType="integer" resultMap="focusShipDetail">
|
|
|
- select focus.user_id,focus.focus_id,focus.create_time as focus_create,archives.* from bd_ship_archives archives,bd_focus_ship focus
|
|
|
+ select focus.user_id,focus.focus_id,focus.create_time as focus_create,archives.* from ax_bd_ship_archives archives,ax_bd_focus_ship focus
|
|
|
<where>
|
|
|
archives.ship_id = focus.ship_id
|
|
|
and focus.focus_id = #{focusId}
|
|
|
</where>
|
|
|
</select>
|
|
|
|
|
|
- <select id="selectList" resultMap="focusShipDetail">
|
|
|
- select focus.user_id,focus.focus_id,focus.create_time as focus_create,archives.* from bd_ship_archives archives,bd_focus_ship focus
|
|
|
- <where>
|
|
|
- archives.ship_id = focus.ship_id
|
|
|
- </where>
|
|
|
+ <select id="selectList" parameterType="focusShipReq" resultMap="focusShipDetail">
|
|
|
+ select focus.user_id,focus.focus_id,focus.create_time as focus_create,dept.pscmc as dept_name,archives.*
|
|
|
+ from ax_bd_ship_archives archives
|
|
|
+ INNER JOIN ax_bd_focus_ship focus
|
|
|
+ INNER JOIN ax_beidou_dept dept
|
|
|
+ where archives.ship_id = focus.ship_id and archives.police_station_id = dept.pscbh
|
|
|
+ <if test="shipId != null and shipId != ''">and archives.ship_id like concat('%', #{shipId},'%')</if>
|
|
|
+ <if test="devideNo != null and devideNo != ''">and archives.devide_no like concat('%', #{devideNo},'%')</if>
|
|
|
+ <if test="deptId != null and deptId != ''">and dept.xw_dept_id like cocat('%',#{deptId},'%')</if>
|
|
|
+ <if test="userId != null and userId != ''">and focus.user_id=#{userId}</if>
|
|
|
+
|
|
|
</select>
|
|
|
</mapper>
|