|
@@ -0,0 +1,126 @@
|
|
|
+<?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.BasicLibraryMapper">
|
|
|
+
|
|
|
+ <resultMap type="BasicLibrary" id="BasicLibraryResult">
|
|
|
+ <result property="id" column="id" />
|
|
|
+ <result property="name" column="name" />
|
|
|
+ <result property="bootCodeHigh" column="boot_code_high" />
|
|
|
+ <result property="bootCodeLow" column="boot_code_low" />
|
|
|
+ <result property="bootCodeSendNum" column="boot_code_send_num" />
|
|
|
+ <result property="syncCodeIntervalHigh" column="sync_code_interval_high" />
|
|
|
+ <result property="syncCodeIntervalLow" column="sync_code_interval_low" />
|
|
|
+ <result property="data0High" column="data0_high" />
|
|
|
+ <result property="data0Low" column="data0_low" />
|
|
|
+ <result property="data1High" column="data1_high" />
|
|
|
+ <result property="data1Low" column="data1_low" />
|
|
|
+ <result property="status" column="status" />
|
|
|
+ <result property="delFlag" column="del_flag" />
|
|
|
+ <result property="createBy" column="create_by" />
|
|
|
+ <result property="createTime" column="create_time" />
|
|
|
+ <result property="updateBy" column="update_by" />
|
|
|
+ <result property="updateTime" column="update_time" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <sql id="selectBasicLibraryVo">
|
|
|
+ select id, name, boot_code_high, boot_code_low, boot_code_send_num, sync_code_interval_high, sync_code_interval_low, data0_high, data0_low, data1_high, data1_low, status, del_flag, create_by, create_time, update_by, update_time from t_basic_library
|
|
|
+ </sql>
|
|
|
+
|
|
|
+ <select id="selectBasicLibraryList" parameterType="BasicLibrary" resultMap="BasicLibraryResult">
|
|
|
+ <include refid="selectBasicLibraryVo"/>
|
|
|
+ <where>
|
|
|
+ <if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
|
|
|
+ <if test="bootCodeHigh != null "> and boot_code_high = #{bootCodeHigh}</if>
|
|
|
+ <if test="bootCodeLow != null "> and boot_code_low = #{bootCodeLow}</if>
|
|
|
+ <if test="bootCodeSendNum != null "> and boot_code_send_num = #{bootCodeSendNum}</if>
|
|
|
+ <if test="syncCodeIntervalHigh != null "> and sync_code_interval_high = #{syncCodeIntervalHigh}</if>
|
|
|
+ <if test="syncCodeIntervalLow != null "> and sync_code_interval_low = #{syncCodeIntervalLow}</if>
|
|
|
+ <if test="data0High != null "> and data0_high = #{data0High}</if>
|
|
|
+ <if test="data0Low != null "> and data0_low = #{data0Low}</if>
|
|
|
+ <if test="data1High != null "> and data1_high = #{data1High}</if>
|
|
|
+ <if test="data1Low != null "> and data1_low = #{data1Low}</if>
|
|
|
+ <if test="status != null and status != ''"> and status = #{status}</if>
|
|
|
+ </where>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="selectBasicLibraryById" parameterType="Long" resultMap="BasicLibraryResult">
|
|
|
+ <include refid="selectBasicLibraryVo"/>
|
|
|
+ where id = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <insert id="insertBasicLibrary" parameterType="BasicLibrary" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ insert into t_basic_library
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="name != null">name,</if>
|
|
|
+ <if test="bootCodeHigh != null">boot_code_high,</if>
|
|
|
+ <if test="bootCodeLow != null">boot_code_low,</if>
|
|
|
+ <if test="bootCodeSendNum != null">boot_code_send_num,</if>
|
|
|
+ <if test="syncCodeIntervalHigh != null">sync_code_interval_high,</if>
|
|
|
+ <if test="syncCodeIntervalLow != null">sync_code_interval_low,</if>
|
|
|
+ <if test="data0High != null">data0_high,</if>
|
|
|
+ <if test="data0Low != null">data0_low,</if>
|
|
|
+ <if test="data1High != null">data1_high,</if>
|
|
|
+ <if test="data1Low != null">data1_low,</if>
|
|
|
+ <if test="status != null">status,</if>
|
|
|
+ <if test="delFlag != null">del_flag,</if>
|
|
|
+ <if test="createBy != null">create_by,</if>
|
|
|
+ <if test="createTime != null">create_time,</if>
|
|
|
+ <if test="updateBy != null">update_by,</if>
|
|
|
+ <if test="updateTime != null">update_time,</if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="name != null">#{name},</if>
|
|
|
+ <if test="bootCodeHigh != null">#{bootCodeHigh},</if>
|
|
|
+ <if test="bootCodeLow != null">#{bootCodeLow},</if>
|
|
|
+ <if test="bootCodeSendNum != null">#{bootCodeSendNum},</if>
|
|
|
+ <if test="syncCodeIntervalHigh != null">#{syncCodeIntervalHigh},</if>
|
|
|
+ <if test="syncCodeIntervalLow != null">#{syncCodeIntervalLow},</if>
|
|
|
+ <if test="data0High != null">#{data0High},</if>
|
|
|
+ <if test="data0Low != null">#{data0Low},</if>
|
|
|
+ <if test="data1High != null">#{data1High},</if>
|
|
|
+ <if test="data1Low != null">#{data1Low},</if>
|
|
|
+ <if test="status != null">#{status},</if>
|
|
|
+ <if test="delFlag != null">#{delFlag},</if>
|
|
|
+ <if test="createBy != null">#{createBy},</if>
|
|
|
+ <if test="createTime != null">#{createTime},</if>
|
|
|
+ <if test="updateBy != null">#{updateBy},</if>
|
|
|
+ <if test="updateTime != null">#{updateTime},</if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+
|
|
|
+ <update id="updateBasicLibrary" parameterType="BasicLibrary">
|
|
|
+ update t_basic_library
|
|
|
+ <trim prefix="SET" suffixOverrides=",">
|
|
|
+ <if test="name != null">name = #{name},</if>
|
|
|
+ <if test="bootCodeHigh != null">boot_code_high = #{bootCodeHigh},</if>
|
|
|
+ <if test="bootCodeLow != null">boot_code_low = #{bootCodeLow},</if>
|
|
|
+ <if test="bootCodeSendNum != null">boot_code_send_num = #{bootCodeSendNum},</if>
|
|
|
+ <if test="syncCodeIntervalHigh != null">sync_code_interval_high = #{syncCodeIntervalHigh},</if>
|
|
|
+ <if test="syncCodeIntervalLow != null">sync_code_interval_low = #{syncCodeIntervalLow},</if>
|
|
|
+ <if test="data0High != null">data0_high = #{data0High},</if>
|
|
|
+ <if test="data0Low != null">data0_low = #{data0Low},</if>
|
|
|
+ <if test="data1High != null">data1_high = #{data1High},</if>
|
|
|
+ <if test="data1Low != null">data1_low = #{data1Low},</if>
|
|
|
+ <if test="status != null">status = #{status},</if>
|
|
|
+ <if test="delFlag != null">del_flag = #{delFlag},</if>
|
|
|
+ <if test="createBy != null">create_by = #{createBy},</if>
|
|
|
+ <if test="createTime != null">create_time = #{createTime},</if>
|
|
|
+ <if test="updateBy != null">update_by = #{updateBy},</if>
|
|
|
+ <if test="updateTime != null">update_time = #{updateTime},</if>
|
|
|
+ </trim>
|
|
|
+ where id = #{id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <delete id="deleteBasicLibraryById" parameterType="Long">
|
|
|
+ delete from t_basic_library where id = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <delete id="deleteBasicLibraryByIds" parameterType="String">
|
|
|
+ delete from t_basic_library where id in
|
|
|
+ <foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
+ #{id}
|
|
|
+ </foreach>
|
|
|
+ </delete>
|
|
|
+</mapper>
|