electripper/electripper-system/src/main/resources/mapper/system/EtCommandLogMapper.xml

107 lines
5.1 KiB
XML
Raw Normal View History

2024-07-08 14:18:58 +08:00
<?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.EtCommandLogMapper">
<resultMap type="EtCommandLog" id="EtCommandLogResult">
<result property="id" column="id" />
<result property="url" column="url" />
<result property="command" column="command" />
<result property="type" column="type" />
<result property="mac" column="mac" />
<result property="sn" column="sn" />
<result property="result" column="result" />
2024-07-15 10:02:56 +08:00
<result property="longitude" column="longitude" />
<result property="latitude" column="latitude" />
<result property="callStatus" column="call_status" />
<result property="orderNo" column="order_no" />
2024-07-08 14:18:58 +08:00
<result property="createTime" column="create_time" />
<result property="createBy" column="create_by" />
2024-07-08 14:18:58 +08:00
</resultMap>
<sql id="selectEtCommandLogVo">
select id, url, command, type, mac, sn, result, longitude, latitude, call_status, create_by, create_time, order_no from et_command_log
2024-07-08 14:18:58 +08:00
</sql>
<select id="selectEtCommandLogList" parameterType="EtCommandLog" resultMap="EtCommandLogResult">
<include refid="selectEtCommandLogVo"/>
<where>
<if test="url != null and url != ''"> and url like concat('%', #{url}, '%')</if>
<if test="command != null and command != ''"> and command like concat('%', #{command}, '%')</if>
<if test="mac != null and mac != ''"> and mac like concat('%', #{mac}, '%')</if>
<if test="sn != null and sn != ''"> and sn like concat('%', #{sn}, '%')</if>
<if test="type != null and type != ''"> and type like concat('%', #{type}, '%')</if>
<if test="result != null and result != ''"> and result like concat('%', #{result}, '%')</if>
2024-07-15 10:02:56 +08:00
<if test="orderNo != null and orderNo != ''"> and order_no like concat('%', #{orderNo}, '%')</if>
<if test="callStatus != null and callStatus != ''"> and call_status = #{callStatus}</if>
2024-07-08 14:18:58 +08:00
</where>
order by create_time desc
</select>
<select id="selectEtCommandLogById" parameterType="Long" resultMap="EtCommandLogResult">
<include refid="selectEtCommandLogVo"/>
where id = #{id}
</select>
<insert id="insertEtCommandLog" parameterType="EtCommandLog" useGeneratedKeys="true" keyProperty="id">
insert into et_command_log
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="url != null">url,</if>
<if test="command != null">command,</if>
<if test="type != null">type,</if>
<if test="mac != null">mac,</if>
<if test="sn != null">sn,</if>
<if test="result != null">result,</if>
2024-07-15 10:02:56 +08:00
<if test="latitude != null">latitude,</if>
<if test="longitude != null">longitude,</if>
<if test="callStatus != null">call_status,</if>
<if test="orderNo != null">order_no,</if>
<if test="createBy != null">create_by,</if>
2024-07-08 14:18:58 +08:00
create_time
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="url != null">#{url},</if>
<if test="command != null">#{command},</if>
<if test="type != null">#{type},</if>
<if test="mac != null">#{mac},</if>
<if test="sn != null">#{sn},</if>
<if test="result != null">#{result},</if>
2024-07-15 10:02:56 +08:00
<if test="latitude != null">#{latitude},</if>
<if test="longitude != null">#{longitude},</if>
<if test="callStatus != null">#{callStatus},</if>
<if test="orderNo != null">#{orderNo},</if>
<if test="createBy != null">#{createBy},</if>
2024-07-08 14:18:58 +08:00
sysdate()
</trim>
</insert>
<update id="updateEtCommandLog" parameterType="EtCommandLog">
update et_command_log
<trim prefix="SET" suffixOverrides=",">
<if test="url != null">url = #{url},</if>
<if test="command != null">command = #{command},</if>
<if test="type != null">type = #{type},</if>
<if test="mac != null">mac = #{mac},</if>
<if test="sn != null">sn = #{sn},</if>
<if test="result != null">result = #{result},</if>
2024-07-15 10:02:56 +08:00
<if test="latitude != null">latitude = #{latitude},</if>
<if test="longitude != null">longitude = #{longitude},</if>
<if test="callStatus != null">call_status = #{callStatus},</if>
<if test="orderNo != null">order_no = #{orderNo},</if>
2024-07-08 14:18:58 +08:00
</trim>
where id = #{id}
</update>
<delete id="deleteEtCommandLogById" parameterType="Long">
delete from et_command_log where id = #{id}
</delete>
<delete id="deleteEtCommandLogByIds" parameterType="String">
delete from et_command_log where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
</mapper>