<?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.SysUserCfCollegeMapper"> <resultMap id="BaseResultMap" type="com.bowintek.smartsearch.model.SysUserCfCollege"> <id column="UserCollegeID" jdbcType="VARCHAR" property="userCollegeID" /> <result column="UserID" jdbcType="VARCHAR" property="userID" /> <result column="CollegeID" jdbcType="VARCHAR" property="collegeID" /> <result column="CreateBy" jdbcType="VARCHAR" property="createBy" /> <result column="CreateTime" jdbcType="TIMESTAMP" property="createTime" /> </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"> UserCollegeID, UserID, CollegeID, CreateBy, CreateTime </sql> <select id="selectByExample" parameterType="com.bowintek.smartsearch.model.SysUserCfCollegeExample" resultMap="BaseResultMap"> select <if test="distinct"> distinct </if> <include refid="Base_Column_List" /> from sys_user_cf_college <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_user_cf_college where UserCollegeID = #{userCollegeID,jdbcType=VARCHAR} </select> <delete id="deleteByPrimaryKey" parameterType="java.lang.String"> delete from sys_user_cf_college where UserCollegeID = #{userCollegeID,jdbcType=VARCHAR} </delete> <delete id="deleteByExample" parameterType="com.bowintek.smartsearch.model.SysUserCfCollegeExample"> delete from sys_user_cf_college <if test="_parameter != null"> <include refid="Example_Where_Clause" /> </if> </delete> <insert id="insert" parameterType="com.bowintek.smartsearch.model.SysUserCfCollege"> insert into sys_user_cf_college (UserCollegeID, UserID, CollegeID, CreateBy, CreateTime) values (#{userCollegeID,jdbcType=VARCHAR}, #{userID,jdbcType=VARCHAR}, #{collegeID,jdbcType=VARCHAR}, #{createBy,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}) </insert> <insert id="insertSelective" parameterType="com.bowintek.smartsearch.model.SysUserCfCollege"> insert into sys_user_cf_college <trim prefix="(" suffix=")" suffixOverrides=","> <if test="userCollegeID != null"> UserCollegeID, </if> <if test="userID != null"> UserID, </if> <if test="collegeID != null"> CollegeID, </if> <if test="createBy != null"> CreateBy, </if> <if test="createTime != null"> CreateTime, </if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="userCollegeID != null"> #{userCollegeID,jdbcType=VARCHAR}, </if> <if test="userID != null"> #{userID,jdbcType=VARCHAR}, </if> <if test="collegeID != null"> #{collegeID,jdbcType=VARCHAR}, </if> <if test="createBy != null"> #{createBy,jdbcType=VARCHAR}, </if> <if test="createTime != null"> #{createTime,jdbcType=TIMESTAMP}, </if> </trim> </insert> <select id="countByExample" parameterType="com.bowintek.smartsearch.model.SysUserCfCollegeExample" resultType="java.lang.Long"> select count(*) from sys_user_cf_college <if test="_parameter != null"> <include refid="Example_Where_Clause" /> </if> </select> <update id="updateByExampleSelective" parameterType="map"> update sys_user_cf_college <set> <if test="row.userCollegeID != null"> UserCollegeID = #{row.userCollegeID,jdbcType=VARCHAR}, </if> <if test="row.userID != null"> UserID = #{row.userID,jdbcType=VARCHAR}, </if> <if test="row.collegeID != null"> CollegeID = #{row.collegeID,jdbcType=VARCHAR}, </if> <if test="row.createBy != null"> CreateBy = #{row.createBy,jdbcType=VARCHAR}, </if> <if test="row.createTime != null"> CreateTime = #{row.createTime,jdbcType=TIMESTAMP}, </if> </set> <if test="example != null"> <include refid="Update_By_Example_Where_Clause" /> </if> </update> <update id="updateByExample" parameterType="map"> update sys_user_cf_college set UserCollegeID = #{row.userCollegeID,jdbcType=VARCHAR}, UserID = #{row.userID,jdbcType=VARCHAR}, CollegeID = #{row.collegeID,jdbcType=VARCHAR}, CreateBy = #{row.createBy,jdbcType=VARCHAR}, CreateTime = #{row.createTime,jdbcType=TIMESTAMP} <if test="example != null"> <include refid="Update_By_Example_Where_Clause" /> </if> </update> <update id="updateByPrimaryKeySelective" parameterType="com.bowintek.smartsearch.model.SysUserCfCollege"> update sys_user_cf_college <set> <if test="userID != null"> UserID = #{userID,jdbcType=VARCHAR}, </if> <if test="collegeID != null"> CollegeID = #{collegeID,jdbcType=VARCHAR}, </if> <if test="createBy != null"> CreateBy = #{createBy,jdbcType=VARCHAR}, </if> <if test="createTime != null"> CreateTime = #{createTime,jdbcType=TIMESTAMP}, </if> </set> where UserCollegeID = #{userCollegeID,jdbcType=VARCHAR} </update> <update id="updateByPrimaryKey" parameterType="com.bowintek.smartsearch.model.SysUserCfCollege"> update sys_user_cf_college set UserID = #{userID,jdbcType=VARCHAR}, CollegeID = #{collegeID,jdbcType=VARCHAR}, CreateBy = #{createBy,jdbcType=VARCHAR}, CreateTime = #{createTime,jdbcType=TIMESTAMP} where UserCollegeID = #{userCollegeID,jdbcType=VARCHAR} </update> </mapper>