electripper/electripper-system/src/main/resources/mapper/system/EtLocationLogMapper.xml
18650502300 3da837e925 1. 记录心跳日志
2. 版本批次改造
3. 定时清理onenet心跳日志
4. 运营数据改造
2024-08-21 17:22:14 +08:00

109 lines
5.1 KiB
XML

<?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.ruoyi.system.mapper.EtLocationLogMapper">
<resultMap type="EtLocationLog" id="EtLocationLogResult">
<result property="locationId" column="location_id" />
<result property="mac" column="mac" />
<result property="onenetMsg" column="onenet_msg" />
<result property="longitude" column="longitude" />
<result property="latitude" column="latitude" />
<result property="createTime" column="create_time" />
<result property="at" column="at" />
<result property="status" column="status" />
<result property="lockStatus" column="lock_status" />
</resultMap>
<sql id="selectEtLocationLogVo">
select location_id, mac, onenet_msg, longitude, latitude, create_time, at, status, lock_status from et_location_log
</sql>
<select id="selectEtLocationLogList" parameterType="EtLocationLog" resultMap="EtLocationLogResult">
<include refid="selectEtLocationLogVo"/>
<where>
<if test="mac != null and mac != ''"> and mac = #{mac}</if>
<if test="onenetMsg != null and onenetMsg != ''"> and onenet_msg = #{onenetMsg}</if>
<if test="longitude != null and longitude != ''"> and longitude = #{longitude}</if>
<if test="latitude != null and latitude != ''"> and latitude = #{latitude}</if>
<if test="status != null and status != ''"> and status = #{status}</if>
<if test="lockStatus != null and lockStatus != ''"> and lock_status = #{lockStatus}</if>
</where>
</select>
<select id="selectEtLocationLogListByCreateTime" parameterType="EtLocationLog" resultMap="EtLocationLogResult">
<include refid="selectEtLocationLogVo"/>
<where>
<if test="mac != null and mac != ''"> and mac = #{mac}</if>
<if test="startTime != null and startTime != ''">
AND date_format(create_time,'%y%m%d') &gt;= date_format(#{startTime},'%y%m%d')
</if>
<if test="endTime != null and endTime != ''">
AND date_format(create_time,'%y%m%d') &lt;= date_format(#{endTime},'%y%m%d')
</if>
</where>
</select>
<select id="selectEtLocationLogByLocationId" parameterType="Long" resultMap="EtLocationLogResult">
<include refid="selectEtLocationLogVo"/>
where location_id = #{locationId}
</select>
<insert id="insertEtLocationLog" parameterType="EtLocationLog" useGeneratedKeys="true" keyProperty="locationId">
insert into et_location_log
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="mac != null">mac,</if>
<if test="onenetMsg != null">onenet_msg,</if>
<if test="longitude != null">longitude,</if>
<if test="latitude != null">latitude,</if>
<if test="createTime != null">create_time,</if>
<if test="at != null">at,</if>
<if test="status != null">status,</if>
<if test="lockStatus != null">lock_status,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="mac != null">#{mac},</if>
<if test="onenetMsg != null">#{onenetMsg},</if>
<if test="longitude != null">#{longitude},</if>
<if test="latitude != null">#{latitude},</if>
<if test="createTime != null">#{createTime},</if>
<if test="at != null">#{at},</if>
<if test="status != null">#{status},</if>
<if test="lockStatus != null">#{lockStatus},</if>
</trim>
</insert>
<update id="updateEtLocationLog" parameterType="EtLocationLog">
update et_location_log
<trim prefix="SET" suffixOverrides=",">
<if test="mac != null">mac = #{mac},</if>
<if test="onenetMsg != null">onenet_msg = #{onenetMsg},</if>
<if test="longitude != null">longitude = #{longitude},</if>
<if test="latitude != null">latitude = #{latitude},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="at != null">at = #{at},</if>
<if test="status != null">status = #{status},</if>
<if test="lockStatus != null">lock_status = #{lockStatus},</if>
</trim>
where location_id = #{locationId}
</update>
<delete id="deleteEtLocationLogByLocationId" parameterType="Long">
delete from et_location_log where location_id = #{locationId}
</delete>
<delete id="deleteEtLocationLogByLocationIds" parameterType="String">
delete from et_location_log where location_id in
<foreach item="locationId" collection="array" open="(" separator="," close=")">
#{locationId}
</foreach>
</delete>
<delete id="deleteLocationLogByCreateTime">
delete from et_location_log
where create_time &lt;= now() - INTERVAL 7 DAY
</delete>
</mapper>