<?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.brilliance.isc.mda.dao.RegMapper"> <resultMap id="BaseResultMap" type="com.brilliance.isc.bo.Reg"> <result property="inr" column="inr" jdbcType="VARCHAR"/> <result property="cod" column="cod" jdbcType="VARCHAR"/> <result property="ver" column="ver" jdbcType="VARCHAR"/> </resultMap> <sql id="Base_Column_List"> inr,cod,ver </sql> <select id="selectByPrimaryKey" resultMap="BaseResultMap"> select <include refid="Base_Column_List"/> from reg where inr = #{inr,jdbcType=VARCHAR} </select> <select id="selectByCod" resultMap="BaseResultMap"> select <include refid="Base_Column_List"/> from reg where cod = #{cod,jdbcType=VARCHAR} </select> <select id="selectByInr" resultMap="BaseResultMap"> select <include refid="Base_Column_List"/> from reg where inr = #{inr,jdbcType=VARCHAR} </select> <delete id="deleteByPrimaryKey"> delete from reg where inr = #{inr,jdbcType=VARCHAR} </delete> <insert id="insert"> insert into reg (<include refid="Base_Column_List"/>) <trim prefix="values (" suffix=")" suffixOverrides=","> #{inr,jdbcType=VARCHAR}, #{cod,jdbcType=VARCHAR}, #{ver,jdbcType=VARCHAR}, </trim> </insert> <insert id="insertSelective"> insert into reg <trim prefix="(" suffix=")" suffixOverrides=","> <if test="inr != null">inr,</if> <if test="cod != null">cod,</if> <if test="ver != null">ver,</if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="inr != null">#{inr,jdbcType=VARCHAR},</if> <if test="cod != null">#{cod,jdbcType=VARCHAR},</if> <if test="ver != null">#{ver,jdbcType=VARCHAR},</if> </trim> </insert> <update id="updateByPrimaryKeySelective"> update reg <set> <if test="cod != null">cod = #{cod,jdbcType=VARCHAR},</if> <if test="ver != null">ver = #{ver,jdbcType=VARCHAR},</if> </set> where inr = #{inr,jdbcType=VARCHAR} </update> <update id="updateByPrimaryKey"> update reg <set> cod = #{cod,jdbcType=VARCHAR}, ver = #{ver,jdbcType=VARCHAR}, </set> where inr = #{inr,jdbcType=VARCHAR} </update> <delete id="deleteByIds"> delete from act where inr in <foreach item="item" index="index" collection="collection" open="(" separator="," close=")"> #{item} </foreach> </delete> <update id="dyncUpdate"> update reg <set> <if test="module.cod != null">cod = #{module.cod,jdbcType=VARCHAR},</if> <if test="module.ver != null">ver = #{module.ver,jdbcType=VARCHAR},</if> </set> ${conditions} </update> <delete id="dyncDelete"> ${sql} </delete> <select id="dyncRead" resultMap="BaseResultMap"> ${sql} </select> </mapper>