New file |
| | |
| | | <?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> |
| | | |
| | | <!--批量添加巡检轨迹--> |
| | | <insert id="insertTracks"> |
| | | INSERT INTO ope_track (id, inspect_id, lng, lat, locate_time) |
| | | VALUES |
| | | <foreach collection="list" item="item" index="index" separator=","> |
| | | (#{item.id}, #{item.inspectId}, #{item.lng}, #{item.lat}, #{item.locateTime}) |
| | | </foreach> |
| | | </insert> |
| | | <!--根据巡检id查询轨迹--> |
| | | <!-- <select id="selectByInspectId" resultMap="BaseResultMap">--> |
| | | <select id="selectByInspectId" resultType="com.dy.pipIrrGlobal.pojoOp.OpeTrack"> |
| | | SELECT |
| | | id, |
| | | inspect_id AS inspectId, |
| | | lng, |
| | | lat, |
| | | locate_time AS locateTime |
| | | FROM ope_track WHERE inspect_id = #{inspectId} |
| | | </select> |
| | | |
| | | <!--获取指定巡检ID下的全部轨迹点--> |
| | | <select id="getTrackPointsById" resultType="com.dy.pipIrrGlobal.voOp.VoTrackPoint"> |
| | | SELECT lng, lat FROM ope_track WHERE inspect_id = #{inspectId} |
| | | </select> |
| | | </mapper> |