<?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.bowintek.smartsearch.mapper.SysAreaMapper"> <resultMap id="BaseResultMap" type="com.bowintek.smartsearch.model.SysArea"> <id column="AreaID" jdbcType="VARCHAR" property="areaID" /> <result column="Code" jdbcType="VARCHAR" property="code" /> <result column="Name" jdbcType="VARCHAR" property="name" /> <result column="ParentAreaID" jdbcType="VARCHAR" property="parentAreaID" /> </resultMap> <sql id="Example_Where_Clause"> <where> <foreach collection="oredCriteria" item="criteria" separator="or"> <if test="criteria.valid"> <trim prefix="(" prefixOverrides="and" suffix=")"> <foreach collection="criteria.criteria" item="criterion"> <choose> <when test="criterion.noValue"> and ${criterion.condition} </when> <when test="criterion.singleValue"> and ${criterion.condition} #{criterion.value} </when> <when test="criterion.betweenValue"> and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} </when> <when test="criterion.listValue"> and ${criterion.condition} <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> #{listItem} </foreach> </when> </choose> </foreach> </trim> </if> </foreach> </where> </sql> <sql id="Update_By_Example_Where_Clause"> <where> <foreach collection="example.oredCriteria" item="criteria" separator="or"> <if test="criteria.valid"> <trim prefix="(" prefixOverrides="and" suffix=")"> <foreach collection="criteria.criteria" item="criterion"> <choose> <when test="criterion.noValue"> and ${criterion.condition} </when> <when test="criterion.singleValue"> and ${criterion.condition} #{criterion.value} </when> <when test="criterion.betweenValue"> and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} </when> <when test="criterion.listValue"> and ${criterion.condition} <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> #{listItem} </foreach> </when> </choose> </foreach> </trim> </if> </foreach> </where> </sql> <sql id="Base_Column_List"> AreaID, Code, Name, ParentAreaID </sql> <select id="selectByExample" parameterType="com.bowintek.smartsearch.model.SysAreaExample" resultMap="BaseResultMap"> select <if test="distinct"> distinct </if> <include refid="Base_Column_List" /> from sys_area <if test="_parameter != null"> <include refid="Example_Where_Clause" /> </if> <if test="orderByClause != null"> order by ${orderByClause} </if> </select> <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap"> select <include refid="Base_Column_List" /> from sys_area where AreaID = #{areaID,jdbcType=VARCHAR} </select> <delete id="deleteByPrimaryKey" parameterType="java.lang.String"> delete from sys_area where AreaID = #{areaID,jdbcType=VARCHAR} </delete> <delete id="deleteByExample" parameterType="com.bowintek.smartsearch.model.SysAreaExample"> delete from sys_area <if test="_parameter != null"> <include refid="Example_Where_Clause" /> </if> </delete> <insert id="insert" parameterType="com.bowintek.smartsearch.model.SysArea"> insert into sys_area (AreaID, Code, Name, ParentAreaID) values (#{areaID,jdbcType=VARCHAR}, #{code,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{parentAreaID,jdbcType=VARCHAR}) </insert> <insert id="insertSelective" parameterType="com.bowintek.smartsearch.model.SysArea"> insert into sys_area <trim prefix="(" suffix=")" suffixOverrides=","> <if test="areaID != null"> AreaID, </if> <if test="code != null"> Code, </if> <if test="name != null"> Name, </if> <if test="parentAreaID != null"> ParentAreaID, </if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="areaID != null"> #{areaID,jdbcType=VARCHAR}, </if> <if test="code != null"> #{code,jdbcType=VARCHAR}, </if> <if test="name != null"> #{name,jdbcType=VARCHAR}, </if> <if test="parentAreaID != null"> #{parentAreaID,jdbcType=VARCHAR}, </if> </trim> </insert> <select id="countByExample" parameterType="com.bowintek.smartsearch.model.SysAreaExample" resultType="java.lang.Long"> select count(*) from sys_area <if test="_parameter != null"> <include refid="Example_Where_Clause" /> </if> </select> <update id="updateByExampleSelective" parameterType="map"> update sys_area <set> <if test="row.areaID != null"> AreaID = #{row.areaID,jdbcType=VARCHAR}, </if> <if test="row.code != null"> Code = #{row.code,jdbcType=VARCHAR}, </if> <if test="row.name != null"> Name = #{row.name,jdbcType=VARCHAR}, </if> <if test="row.parentAreaID != null"> ParentAreaID = #{row.parentAreaID,jdbcType=VARCHAR}, </if> </set> <if test="example != null"> <include refid="Update_By_Example_Where_Clause" /> </if> </update> <update id="updateByExample" parameterType="map"> update sys_area set AreaID = #{row.areaID,jdbcType=VARCHAR}, Code = #{row.code,jdbcType=VARCHAR}, Name = #{row.name,jdbcType=VARCHAR}, ParentAreaID = #{row.parentAreaID,jdbcType=VARCHAR} <if test="example != null"> <include refid="Update_By_Example_Where_Clause" /> </if> </update> <update id="updateByPrimaryKeySelective" parameterType="com.bowintek.smartsearch.model.SysArea"> update sys_area <set> <if test="code != null"> Code = #{code,jdbcType=VARCHAR}, </if> <if test="name != null"> Name = #{name,jdbcType=VARCHAR}, </if> <if test="parentAreaID != null"> ParentAreaID = #{parentAreaID,jdbcType=VARCHAR}, </if> </set> where AreaID = #{areaID,jdbcType=VARCHAR} </update> <update id="updateByPrimaryKey" parameterType="com.bowintek.smartsearch.model.SysArea"> update sys_area set Code = #{code,jdbcType=VARCHAR}, Name = #{name,jdbcType=VARCHAR}, ParentAreaID = #{parentAreaID,jdbcType=VARCHAR} where AreaID = #{areaID,jdbcType=VARCHAR} </update> </mapper>