|
@@ -0,0 +1,116 @@
|
|
|
+<?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.ComponentsLibraryMapper">
|
|
|
+
|
|
|
+ <resultMap type="ComponentsLibrary" id="ComponentsLibraryResult">
|
|
|
+ <result property="id" column="id" />
|
|
|
+ <result property="name" column="name" />
|
|
|
+ <result property="bntStyle" column="bnt_style" />
|
|
|
+ <result property="typeNum" column="type_num" />
|
|
|
+ <result property="addSubMax" column="add_sub_max" />
|
|
|
+ <result property="addSubMin" column="add_sub_min" />
|
|
|
+ <result property="dictateParameter" column="dictate_parameter" />
|
|
|
+ <result property="defValue" column="def_value" />
|
|
|
+ <result property="repeatCode" column="repeat_code" />
|
|
|
+ <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="selectComponentsLibraryVo">
|
|
|
+ select id, name, bnt_style, type_num, add_sub_max, add_sub_min, dictate_parameter, def_value, repeat_code, status, del_flag, create_by, create_time, update_by, update_time from t_components_library
|
|
|
+ </sql>
|
|
|
+
|
|
|
+ <select id="selectComponentsLibraryList" parameterType="ComponentsLibrary" resultMap="ComponentsLibraryResult">
|
|
|
+ <include refid="selectComponentsLibraryVo"/>
|
|
|
+ <where>
|
|
|
+ <if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
|
|
|
+ <if test="bntStyle != null and bntStyle != ''"> and bnt_style = #{bntStyle}</if>
|
|
|
+ <if test="typeNum != null "> and type_num = #{typeNum}</if>
|
|
|
+ <if test="addSubMax != null "> and add_sub_max = #{addSubMax}</if>
|
|
|
+ <if test="addSubMin != null "> and add_sub_min = #{addSubMin}</if>
|
|
|
+ <if test="dictateParameter != null and dictateParameter != ''"> and dictate_parameter = #{dictateParameter}</if>
|
|
|
+ <if test="defValue != null and defValue != ''"> and def_value = #{defValue}</if>
|
|
|
+ <if test="repeatCode != null "> and repeat_code = #{repeatCode}</if>
|
|
|
+ <if test="status != null and status != ''"> and status = #{status}</if>
|
|
|
+ </where>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="selectComponentsLibraryById" parameterType="Long" resultMap="ComponentsLibraryResult">
|
|
|
+ <include refid="selectComponentsLibraryVo"/>
|
|
|
+ where id = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <insert id="insertComponentsLibrary" parameterType="ComponentsLibrary" useGeneratedKeys="true" keyProperty="id">
|
|
|
+ insert into t_components_library
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="name != null">name,</if>
|
|
|
+ <if test="bntStyle != null">bnt_style,</if>
|
|
|
+ <if test="typeNum != null">type_num,</if>
|
|
|
+ <if test="addSubMax != null">add_sub_max,</if>
|
|
|
+ <if test="addSubMin != null">add_sub_min,</if>
|
|
|
+ <if test="dictateParameter != null">dictate_parameter,</if>
|
|
|
+ <if test="defValue != null">def_value,</if>
|
|
|
+ <if test="repeatCode != null">repeat_code,</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="bntStyle != null">#{bntStyle},</if>
|
|
|
+ <if test="typeNum != null">#{typeNum},</if>
|
|
|
+ <if test="addSubMax != null">#{addSubMax},</if>
|
|
|
+ <if test="addSubMin != null">#{addSubMin},</if>
|
|
|
+ <if test="dictateParameter != null">#{dictateParameter},</if>
|
|
|
+ <if test="defValue != null">#{defValue},</if>
|
|
|
+ <if test="repeatCode != null">#{repeatCode},</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="updateComponentsLibrary" parameterType="ComponentsLibrary">
|
|
|
+ update t_components_library
|
|
|
+ <trim prefix="SET" suffixOverrides=",">
|
|
|
+ <if test="name != null">name = #{name},</if>
|
|
|
+ <if test="bntStyle != null">bnt_style = #{bntStyle},</if>
|
|
|
+ <if test="typeNum != null">type_num = #{typeNum},</if>
|
|
|
+ <if test="addSubMax != null">add_sub_max = #{addSubMax},</if>
|
|
|
+ <if test="addSubMin != null">add_sub_min = #{addSubMin},</if>
|
|
|
+ <if test="dictateParameter != null">dictate_parameter = #{dictateParameter},</if>
|
|
|
+ <if test="defValue != null">def_value = #{defValue},</if>
|
|
|
+ <if test="repeatCode != null">repeat_code = #{repeatCode},</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="deleteComponentsLibraryById" parameterType="Long">
|
|
|
+ delete from t_components_library where id = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <delete id="deleteComponentsLibraryByIds" parameterType="String">
|
|
|
+ delete from t_components_library where id in
|
|
|
+ <foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
+ #{id}
|
|
|
+ </foreach>
|
|
|
+ </delete>
|
|
|
+</mapper>
|