|
@@ -0,0 +1,98 @@
|
|
|
+<?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="cn.com.taiji.beidou.ship.archives.mapper.ShipArchivesMapper">
|
|
|
+
|
|
|
+ <resultMap type="shipArchivesData" id="ShipResult">
|
|
|
+ <id property="shipId" column="ship_id" />
|
|
|
+ <result property="devideNo" column="devide_no" />
|
|
|
+ <result property="shipType" column="ship_type" />
|
|
|
+ <result property="jobType" column="job_type" />
|
|
|
+ <result property="jobWay" column="job_way" />
|
|
|
+ <result property="ownerName" column="owner_name" />
|
|
|
+ <result property="ownerTelNo" column="owner_tel_no" />
|
|
|
+ <result property="shipLength" column="ship_length" />
|
|
|
+ <result property="shipWidth" column="ship_width" />
|
|
|
+ <result property="shipMaterial" column="ship_material" />
|
|
|
+ <result property="policeStationId" column="police_station_id" />
|
|
|
+ <result property="ownerCompany" column="owner_company" />
|
|
|
+ <result property="createTime" column="create_time" />
|
|
|
+ <result property="modifyTime" column="modify_time" />
|
|
|
+ <result property="ownerType" column="owner_type" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <select id="selectByDevideNo" parameterType="string" resultMap="ShipResult">
|
|
|
+ select * from bd_ship_archives where devide_no=#{devideNo}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <update id="updateById" parameterType="shipArchivesData" >
|
|
|
+ update bd_ship_archives
|
|
|
+ <set>
|
|
|
+ <if test="shipId != null and shipId != ''">ship_id = #{shipId},</if>
|
|
|
+ <if test="shipType != null and shipType != ''">ship_type = #{shipType},</if>
|
|
|
+ <if test="jobType != null and jobType != ''">job_type = #{jobType},</if>
|
|
|
+ <if test="jobWay != null and jobWay != ''">job_way = #{jobWay},</if>
|
|
|
+ <if test="ownerName != null and ownerName != ''">owner_name = #{ownerName},</if>
|
|
|
+ <if test="ownerTelNo != null and ownerTelNo != ''">owner_tel_no = #{ownerTelNo},</if>
|
|
|
+ <if test="shipLength != null">ship_length = #{shipLength},</if>
|
|
|
+ <if test="shipWidth != null">ship_width = #{shipWidth},</if>
|
|
|
+ <if test="shipMaterial != null">ship_material = #{shipMaterial},</if>
|
|
|
+ <if test="policeStationId != null and policeStationId != ''">police_station_id = #{policeStationId},</if>
|
|
|
+ <if test="ownerCompany != null and ownerCompany != ''">owner_company = #{ownerCompany},</if>
|
|
|
+ <if test="createTime != null">create_time = #{createTime},</if>
|
|
|
+ <if test="modifyTime != null">modify_time = #{modifyTime},</if>
|
|
|
+ <if test="ownerType != null and ownerType != ''">owner_type = #{ownerType}</if>
|
|
|
+ </set>
|
|
|
+ where devide_no = #{devideNo}
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <insert id="insertShip" parameterType="shipArchivesData">
|
|
|
+ insert into bd_ship_archives (
|
|
|
+ <if test="shipId != null and shipId != ''">ship_id,</if>
|
|
|
+ <if test="devideNo != null and devideNo != ''">devide_no,</if>
|
|
|
+ <if test="shipType != null and shipType != ''">ship_type,</if>
|
|
|
+ <if test="jobType != null and jobType != ''">job_type,</if>
|
|
|
+ <if test="jobWay != null and jobWay != ''">job_way,</if>
|
|
|
+ <if test="ownerName != null and ownerName != ''">owner_name,</if>
|
|
|
+ <if test="ownerTelNo != null and ownerTelNo != ''">owner_tel_no,</if>
|
|
|
+ <if test="shipLength != null">ship_length,</if>
|
|
|
+ <if test="shipWidth != null">ship_width,</if>
|
|
|
+ <if test="shipMaterial != null">ship_material,</if>
|
|
|
+ <if test="policeStationId != null and policeStationId != ''">police_station_id,</if>
|
|
|
+ <if test="ownerCompany != null and ownerCompany != ''">owner_company,</if>
|
|
|
+ <if test="createTime != null">create_time,</if>
|
|
|
+ <if test="modifyTime != null">modify_time,</if>
|
|
|
+ <if test="ownerType != null and ownerType != ''">owner_type</if>
|
|
|
+ )values(
|
|
|
+ <if test="shipId != null and shipId != ''">#{shipId},</if>
|
|
|
+ <if test="devideNo != null and devideNo != ''">#{devideNo},</if>
|
|
|
+ <if test="shipType != null and shipType != ''">#{shipType},</if>
|
|
|
+ <if test="jobType != null and jobType != ''">#{jobType},</if>
|
|
|
+ <if test="jobWay != null and jobWay != ''">#{jobWay},</if>
|
|
|
+ <if test="ownerName != null and ownerName != ''">#{ownerName},</if>
|
|
|
+ <if test="ownerTelNo != null and ownerTelNo != ''">#{ownerTelNo},</if>
|
|
|
+ <if test="shipLength != null">#{shipLength},</if>
|
|
|
+ <if test="shipWidth != null">#{shipWidth},</if>
|
|
|
+ <if test="shipMaterial != null">#{shipMaterial},</if>
|
|
|
+ <if test="policeStationId != null and policeStationId != ''">#{policeStationId},</if>
|
|
|
+ <if test="ownerCompany != null and ownerCompany != ''">#{ownerCompany},</if>
|
|
|
+ <if test="createTime != null">#{createTime},</if>
|
|
|
+ <if test="modifyTime != null">#{modifyTime},</if>
|
|
|
+ <if test="ownerType != null and ownerType != ''">#{ownerType}</if>
|
|
|
+ )
|
|
|
+ </insert>
|
|
|
+
|
|
|
+
|
|
|
+ <select id="selectShipArchivesList" parameterType="shipArchivesREQ" resultMap="ShipResult">
|
|
|
+ select * from bd_ship_archives
|
|
|
+ <where>
|
|
|
+ <if test="shipType != null and shipType != ''">ship_type = #{shipType}</if>
|
|
|
+ </where>
|
|
|
+ </select>
|
|
|
+
|
|
|
+
|
|
|
+ <select id="selectById" parameterType="string" resultMap="ShipResult">
|
|
|
+ select * from bd_ship_archives where ship_id=#{shipId}
|
|
|
+ </select>
|
|
|
+</mapper>
|