|
@@ -0,0 +1,157 @@
|
|
|
+<?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.yiqi.system.mapper.SysDataGroupInfoMapper">
|
|
|
+
|
|
|
+ <resultMap type="SysDataGroupInfo" id="SysDataGroupInfoResult">
|
|
|
+ <result property="id" column="id"/>
|
|
|
+ <result property="groupId" column="group_id"/>
|
|
|
+ <result property="value" column="value"/>
|
|
|
+ <result property="sort" column="sort"/>
|
|
|
+ <result property="status" column="status"/>
|
|
|
+ <result property="createById" column="create_by_id"/>
|
|
|
+ <result property="createBy" column="create_by"/>
|
|
|
+ <result property="createTime" column="create_time"/>
|
|
|
+ <result property="updateById" column="update_by_id"/>
|
|
|
+ <result property="updateBy" column="update_by"/>
|
|
|
+ <result property="updateTime" column="update_time"/>
|
|
|
+ <result property="remark" column="remark"/>
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <sql id="selectSysDataGroupInfoVo">
|
|
|
+ select id, group_id, value, sort, status, create_by_id, create_by, create_time, update_by_id, update_by, update_time, remark
|
|
|
+ from sys_data_group_info
|
|
|
+ </sql>
|
|
|
+
|
|
|
+ <select id="selectSysDataGroupInfoList" parameterType="SysDataGroupInfo" resultMap="SysDataGroupInfoResult">
|
|
|
+ <include refid="selectSysDataGroupInfoVo"/>
|
|
|
+ <where>
|
|
|
+ <if test="groupId != null ">
|
|
|
+ and group_id = #{groupId}
|
|
|
+ </if>
|
|
|
+ <if test="value != null and value != ''">
|
|
|
+ and value = #{value}
|
|
|
+ </if>
|
|
|
+ <if test="sort != null ">
|
|
|
+ and sort = #{sort}
|
|
|
+ </if>
|
|
|
+ <if test="status != null ">
|
|
|
+ and status = #{status}
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="selectSysDataGroupInfoById" parameterType="Integer"
|
|
|
+ resultMap="SysDataGroupInfoResult">
|
|
|
+ <include refid="selectSysDataGroupInfoVo"/>
|
|
|
+ where id = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <insert id="insertSysDataGroupInfo" parameterType="SysDataGroupInfo" useGeneratedKeys="true"
|
|
|
+ keyProperty="id">
|
|
|
+ insert into sys_data_group_info
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="groupId != null">group_id,
|
|
|
+ </if>
|
|
|
+ <if test="value != null">value,
|
|
|
+ </if>
|
|
|
+ <if test="sort != null">sort,
|
|
|
+ </if>
|
|
|
+ <if test="status != null">status,
|
|
|
+ </if>
|
|
|
+ <if test="createById != null">create_by_id,
|
|
|
+ </if>
|
|
|
+ <if test="createBy != null">create_by,
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">create_time,
|
|
|
+ </if>
|
|
|
+ <if test="updateById != null">update_by_id,
|
|
|
+ </if>
|
|
|
+ <if test="updateBy != null">update_by,
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">update_time,
|
|
|
+ </if>
|
|
|
+ <if test="remark != null">remark,
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="groupId != null">#{groupId},
|
|
|
+ </if>
|
|
|
+ <if test="value != null">#{value},
|
|
|
+ </if>
|
|
|
+ <if test="sort != null">#{sort},
|
|
|
+ </if>
|
|
|
+ <if test="status != null">#{status},
|
|
|
+ </if>
|
|
|
+ <if test="createById != null">#{createById},
|
|
|
+ </if>
|
|
|
+ <if test="createBy != null">#{createBy},
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">#{createTime},
|
|
|
+ </if>
|
|
|
+ <if test="updateById != null">#{updateById},
|
|
|
+ </if>
|
|
|
+ <if test="updateBy != null">#{updateBy},
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">#{updateTime},
|
|
|
+ </if>
|
|
|
+ <if test="remark != null">#{remark},
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+
|
|
|
+ <update id="updateSysDataGroupInfo" parameterType="SysDataGroupInfo">
|
|
|
+ update sys_data_group_info
|
|
|
+ <trim prefix="SET" suffixOverrides=",">
|
|
|
+ <if test="groupId != null">group_id =
|
|
|
+ #{groupId},
|
|
|
+ </if>
|
|
|
+ <if test="value != null">value =
|
|
|
+ #{value},
|
|
|
+ </if>
|
|
|
+ <if test="sort != null">sort =
|
|
|
+ #{sort},
|
|
|
+ </if>
|
|
|
+ <if test="status != null">status =
|
|
|
+ #{status},
|
|
|
+ </if>
|
|
|
+ <if test="createById != null">create_by_id =
|
|
|
+ #{createById},
|
|
|
+ </if>
|
|
|
+ <if test="createBy != null">create_by =
|
|
|
+ #{createBy},
|
|
|
+ </if>
|
|
|
+ <if test="createTime != null">create_time =
|
|
|
+ #{createTime},
|
|
|
+ </if>
|
|
|
+ <if test="updateById != null">update_by_id =
|
|
|
+ #{updateById},
|
|
|
+ </if>
|
|
|
+ <if test="updateBy != null">update_by =
|
|
|
+ #{updateBy},
|
|
|
+ </if>
|
|
|
+ <if test="updateTime != null">update_time =
|
|
|
+ #{updateTime},
|
|
|
+ </if>
|
|
|
+ <if test="remark != null">remark =
|
|
|
+ #{remark},
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ where id = #{id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <delete id="deleteSysDataGroupInfoById" parameterType="Integer">
|
|
|
+ delete from sys_data_group_info where id = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <delete id="deleteSysDataGroupInfoByIds" parameterType="String">
|
|
|
+ delete from sys_data_group_info where id in
|
|
|
+ <foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
+ #{id}
|
|
|
+ </foreach>
|
|
|
+ </delete>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+</mapper>
|