From 4a2deb11b819dd78a8c75e244ef67ec2e48cf5f5 Mon Sep 17 00:00:00 2001 From: zhubaomin <zhubaomin> Date: 星期一, 14 四月 2025 21:03:28 +0800 Subject: [PATCH] 重构轮灌组修改接口 --- pipIrr-platform/pipIrr-global/src/main/resources/mapper/OpeTrackMapper.xml | 127 ++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 127 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/resources/mapper/OpeTrackMapper.xml b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/OpeTrackMapper.xml new file mode 100644 index 0000000..977af0a --- /dev/null +++ b/pipIrr-platform/pipIrr-global/src/main/resources/mapper/OpeTrackMapper.xml @@ -0,0 +1,127 @@ +<?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> \ No newline at end of file -- Gitblit v1.8.0