<?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.dy.pipIrrGlobal.daoOp.OpeTrackMapper">
|
<resultMap id="BaseResultMap" type="com.dy.pipIrrGlobal.pojoOp.OpeTrack">
|
<!--@mbg.generated-->
|
<!--@Table ope_track-->
|
<id column="id" jdbcType="BIGINT" property="id" />
|
<result column="inspect_id" jdbcType="BIGINT" property="inspectId" />
|
<result column="lng" jdbcType="DECIMAL" property="lng" />
|
<result column="lat" jdbcType="DECIMAL" property="lat" />
|
<result column="locate_time" jdbcType="TIMESTAMP" property="locateTime" />
|
</resultMap>
|
<sql id="Base_Column_List">
|
<!--@mbg.generated-->
|
id, inspect_id, lng, lat, locate_time
|
</sql>
|
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
|
<!--@mbg.generated-->
|
select
|
<include refid="Base_Column_List" />
|
from ope_track
|
where id = #{id,jdbcType=BIGINT}
|
</select>
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
<!--@mbg.generated-->
|
delete from ope_track
|
where id = #{id,jdbcType=BIGINT}
|
</delete>
|
<insert id="insert" parameterType="com.dy.pipIrrGlobal.pojoOp.OpeTrack">
|
<!--@mbg.generated-->
|
insert into ope_track (id, inspect_id, lng,
|
lat, locate_time)
|
values (#{id,jdbcType=BIGINT}, #{inspectId,jdbcType=BIGINT}, #{lng,jdbcType=DECIMAL},
|
#{lat,jdbcType=DECIMAL}, #{locateTime,jdbcType=TIMESTAMP})
|
</insert>
|
<insert id="insertSelective" parameterType="com.dy.pipIrrGlobal.pojoOp.OpeTrack">
|
<!--@mbg.generated-->
|
insert into ope_track
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<if test="id != null">
|
id,
|
</if>
|
<if test="inspectId != null">
|
inspect_id,
|
</if>
|
<if test="lng != null">
|
lng,
|
</if>
|
<if test="lat != null">
|
lat,
|
</if>
|
<if test="locateTime != null">
|
locate_time,
|
</if>
|
</trim>
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<if test="id != null">
|
#{id,jdbcType=BIGINT},
|
</if>
|
<if test="inspectId != null">
|
#{inspectId,jdbcType=BIGINT},
|
</if>
|
<if test="lng != null">
|
#{lng,jdbcType=DECIMAL},
|
</if>
|
<if test="lat != null">
|
#{lat,jdbcType=DECIMAL},
|
</if>
|
<if test="locateTime != null">
|
#{locateTime,jdbcType=TIMESTAMP},
|
</if>
|
</trim>
|
</insert>
|
<update id="updateByPrimaryKeySelective" parameterType="com.dy.pipIrrGlobal.pojoOp.OpeTrack">
|
<!--@mbg.generated-->
|
update ope_track
|
<set>
|
<if test="inspectId != null">
|
inspect_id = #{inspectId,jdbcType=BIGINT},
|
</if>
|
<if test="lng != null">
|
lng = #{lng,jdbcType=DECIMAL},
|
</if>
|
<if test="lat != null">
|
lat = #{lat,jdbcType=DECIMAL},
|
</if>
|
<if test="locateTime != null">
|
locate_time = #{locateTime,jdbcType=TIMESTAMP},
|
</if>
|
</set>
|
where id = #{id,jdbcType=BIGINT}
|
</update>
|
<update id="updateByPrimaryKey" parameterType="com.dy.pipIrrGlobal.pojoOp.OpeTrack">
|
<!--@mbg.generated-->
|
update ope_track
|
set inspect_id = #{inspectId,jdbcType=BIGINT},
|
lng = #{lng,jdbcType=DECIMAL},
|
lat = #{lat,jdbcType=DECIMAL},
|
locate_time = #{locateTime,jdbcType=TIMESTAMP}
|
where id = #{id,jdbcType=BIGINT}
|
</update>
|
</mapper>
|