86 lines
3.7 KiB
XML
86 lines
3.7 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.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" />
|
||
|
<result property="createTime" column="create_time" />
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="selectEtCommandLogVo">
|
||
|
select id, url, command, type, mac, sn, result, create_time from et_command_log
|
||
|
</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>
|
||
|
</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>
|
||
|
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>
|
||
|
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>
|
||
|
</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>
|